Font-weight of options in checkbox

margknox 02 Jun, 2015
The options in my checkboxes are displaying bold. How can I change the font-weight to normal?
Thank you.
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
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?
GreyHead 04 Jun, 2015
Hi margknox,

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

Bob
margknox 05 Jun, 2015
Perfect! Thank you.
This topic is locked and no more replies can be posted.