I'd like to have the default for all of my checkbox (and radio buttons) to be normal (not bold). I've seen notes about how to turn them bold, but mine start out bold and stay bold even when checked.
I'd like to have the default for all of my checkbox (and radio buttons) to be normal (not bold). I've seen notes about how to turn them bold, but mine start out bold and stay bold even when checked.
Please post a link to the page on your site where the form is embedded and we will help you with the CSS.
Your theme is applying a rule to all labels, in this stylesheet: http://uscompliance.pairserver.com/wp-content/themes/Snips/lib/css/screen.css
[css]
/* Line 82 */
label {
font-weight: bold;
}
Add this to one of your theme's stylesheets and your Gravity Forms labels will be normal weight, not bold:
[css]
body .gform_wrapper label {
font-weight: normal;
}
That fixed it -- thanks!!!
You're welcome