When i select a checkbox the list item text turns bold how do i prevent this?
When i select a checkbox the list item text turns bold how do i prevent this?
Can you post a link to your form so I can check it out. I can give you a snippet of CSS to place.
Here is the link
http://myphotographicmind.com/?page_id=29
Thanx in advance!
Go ahead and place this into your theme's stylesheet and you should be good to go!
[css]
.gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label, .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label {
font-weight: normal !important;
}
Many thankx, you are an artist!
No problem, glad to help! :)