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 Can I make my Field Titles Be Not Bold?

  1. Currently my forms are defaulting the field titles to bold. Is there a way that I can change this to default the titles to be normal weight and not bold?

    I could not find anything in the forums. You can see what is happening at the following link,

    http://www.domainewinestorage.com/dev/contact/shipping-questionaire/

    Thank you very much for your time. I appreciate it.

    Posted 11 years ago on Monday April 15, 2013 | Permalink
  2. Those are the field labels. You can add this to the end of your theme stylesheet and it should "unbold" the labels for you.

    [css]
    body .gform_wrapper .gfield_label {
        font-weight: normal !important;
    }
    Posted 11 years ago on Tuesday April 16, 2013 | Permalink