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.

Can't seem to target description

  1. Please see the form on this page: http://iamsinc.com/blog/paperlesscontracting/

    I'm trying to change the font color of the description labels using
    [css]body #gform_wrapper_5 .gform_body .gform_fields .gfield .gfield_description {color: #ffffff}
    and it's not changing it.

    Also, I used

    [css]body #gform_wrapper_5 .gform_body {
    padding: 7px;
    }
    to add padding, but it didn't add padding to the form title

    Your help is greatly appreciated. Thank you!

    Posted 11 years ago on Thursday May 24, 2012 | Permalink
  2. David Peralty

    Try something like the following for the text color:

    [css]
    #input_5_1_3 label {
    color: #fff !important;
    }

    As for the padding for the form title try:

    [css]
    .gform_title{
    padding: 7px !important;
    }
    Posted 11 years ago on Thursday May 24, 2012 | Permalink
  3. Thank you for your response!

    The code for the padding worked perfectly! The field labels, however, are still black. Any other suggestions? Thanks

    Posted 11 years ago on Friday May 25, 2012 | Permalink
  4. This will do the trick:

    [css]
    #input_5_1 label {
    color: #fff;
    }
    Posted 11 years ago on Friday May 25, 2012 | Permalink
  5. That did the trick! Thank you so much!

    Posted 11 years ago on Friday May 25, 2012 | Permalink
  6. Awesome, glad to help!

    Posted 11 years ago on Friday May 25, 2012 | Permalink

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