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.

Style Changes Assistance, please

  1. http://gringodog.com/category/add-pet-friendly-lodging/

    I would like to
    1.increase the font and change the color of the form title,
    2.bold the font of the form description
    3.increase the font size of the descriptions for fields (the ones that are now very tiny and italicized).

    I read through various posts in the forum, and came up with the following code that I put into my CSS Inserts of my theme:

    /**********Gravity Forms************************/
    .gform_title {font-size: 18px!important; color: #ee0000!important;}
    .gform_description {font-weight: strong!important; font-size: 14px!important;}
    .gfield_description {font-size: 10px!important;}

    This code accomplished #1, but I'm unable to get #2 and #3 to work. Again, I apologize for my limited knowledge of html/css, etc.

    Posted 13 years ago on Friday December 10, 2010 | Permalink
  2. Try this:

    /**********Gravity Forms************************/
    .gform_title {font-size: 18px!important; color: #ee0000!important;}
    .gform_description {font-weight: bold!important; font-size: 14px!important;}
    .gfield_description {font-size: 12px!important;}

    #2 above you need to set to font-weight: bold, not strong.

    #3 above was being applied, but you sent the font-size to 10px which isn't really any bigger than the default, in fact it may be smaller. So try 12px or even larger.

    Posted 13 years ago on Friday December 10, 2010 | Permalink
  3. That did the trick. Thank you. And thanks for the explanation, too - helps me to learn.

    Posted 13 years ago on Sunday December 12, 2010 | Permalink

This topic has been resolved and has been closed to new replies.