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.

Entry Field Text Color

  1. How do I change the color of the text users enter in the form fields. It's barely readable right now and I'd like it to be the same color as the field titles or something else commonly used that's recognizable.

    http://jncsolutions.net/

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  2. You would use something like this in your theme's stylesheet:

    [css]
    .gform_wrapper .top_label input.medium {
        color: #333;
    }

    You could get more vague or specific than that when it comes to inputs, this above is targeting medium-sized input fields.

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  3. I tried that and still no dice. can you look to see if I entered it incorrectly.

    http://jncsolutions.net/contact-us/

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  4. ok i got it to work, do I use the same code but enter large for the paragraph text fields?

    Is there a way to set this as the text color for every entry field or do you have to go through each one individually.

    Posted 12 years ago on Friday November 4, 2011 | Permalink
  5. Large inputs use textarea HTML elements, so the css for that would be:

    [css]
    .gform_wrapper textarea.medium {
        color: #333;
    }
    Posted 12 years ago on Friday November 4, 2011 | Permalink
  6. perfect, thanks Rob.

    Posted 12 years ago on Tuesday November 8, 2011 | Permalink
  7. No problem, glad to help!

    Posted 12 years ago on Tuesday November 8, 2011 | Permalink

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