PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

How to apply a style to a specific checkbox title

  1. as per subject. How can I do this?

    Thank you.

    Posted 11 years ago on Tuesday August 21, 2012 | Permalink
  2. 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.

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  3. 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.

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink
  4. 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.

    Posted 11 years ago on Wednesday August 22, 2012 | Permalink