as per subject. How can I do this?
Thank you.
as per subject. How can I do this?
Thank you.
Do you have a link to your form? Each field and element has it's own ID. I can help you write the specific selector if you can provide a link and the field/item you are trying to change.
Sure. It is http://www.centrallia.com/volunteer-registration-online-form/
Under Availability, there is checkbox title:
Availability before the event (Sept. 4 – Oct. 8, 2012)
I want to make this bold.
There are some others to clean up, but once I know how to do one I can do the other too. Thank you.
You can use this for that label (place in your theme's stylesheet):
[css]
#field_1_16 .gfield_label {
font-weight: bold;
}
In Google Chrome, you can right click on the label and choose "Inspect Element" and you will see that the ID of the field is #field_1_16.