The options in my checkboxes are displaying bold. How can I change the font-weight to normal?
Thank you.
Thank you.
Hi margknox,
Add CSS in a Load CSS action in the On Load event of your form. This should do it:
Bob
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
Thank you, that does make the options normal.
But it makes the label normal too. How can I get that back to bold please?
But it makes the label normal too. How can I get that back to bold please?
Hi margknox,
Please try
Bob
Please try
.gcore-checkbox-item label {
font-weight: normal !important;
}
Bob
This topic is locked and no more replies can be posted.