Font-weight of options in checkbox

ma margknox 02 Jun, 2015
The options in my checkboxes are displaying bold. How can I change the font-weight to normal?
Thank you.
Gr GreyHead 02 Jun, 2015
Hi margknox,

Add CSS in a Load CSS action in the On Load event of your form. This should do it:
.gcore-label-checkbox {
    font-weight: normal !important;
}

Bob
ma margknox 04 Jun, 2015
Thank you, that does make the options normal.
But it makes the label normal too. How can I get that back to bold please?
Gr GreyHead 04 Jun, 2015
Hi margknox,

Please try
.gcore-checkbox-item label {
    font-weight: normal !important;
}

Bob
This topic is locked and no more replies can be posted.