Hello,
I can select all the field labels with ".gform_wrapper .top_label .gfield_label", but is it possible to select only the checkbox field labels?
Thank you
Hello,
I can select all the field labels with ".gform_wrapper .top_label .gfield_label", but is it possible to select only the checkbox field labels?
Thank you
This should do the trick for you:
[css]
body .gform_wrapper .top_label .gfield_checkbox li label {
color: red;
}
Thanks Rob, that wasn't working for me, but I added a class, removed the li, and this worked:
body .gform_wrapper .top_label .custom-class label {
color: red;
}
Thank you
Right on, I just wrote that selector from Chrome developer tools by inspecting a checkbox field on my form via the form builder preview - but glad your solution worked for you.