field labels non bold

How to remove bold formatting from field labels in ChronoForms.

Overview

The field labels are bold by default due to the CSS styling applied by the form template.
Add custom CSS to set the font-weight of the label class to normal using a Load CSS action in the form's On Load event.

Answered
lp lpowlette 29 Mar, 2015
hello,

The field labels on my form are bold as they are with all the forms. i would like to remove the bold formatting. is this possible?

i understand that if it is switched off, it may well be for all forms.

luther
Gr GreyHead 30 Mar, 2015
Hi Luther,

You can do it with CSS. Please try adding this to a Load CSS action in the On Load event of your form:
.gbs3 label.control-label {
  font-weight: normal;
}

Bob
lp lpowlette 30 Mar, 2015
Answer
Hi Bob,

That's worked great.

Many Thanks

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