Where do I change the color of the sub label?
Forums
change text color of sub label
Please use your CSS code in a "Load CSS" action in your form!
Regards,
Max
Regards,
Max
I have this css code inserted in the Load CSS element and have entered in the onload section of the form,
.help-block {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
}
No change in text color or size.
Is there something else I have to put to make it override the existing color and size.
.help-block {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
}
No change in text color or size.
Is there something else I have to put to make it override the existing color and size.
Please try to use the "!important" rule, you may also need to provide the full path to the element in the CSS selector:
.gbs3 .help-block {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF !important;
}
This topic is locked and no more replies can be posted.