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.

Changing Form Text Color

  1. I just installed Gravity Forms on my Titanium Theme from IThemes. The font in the body and fields seems to be white, and I can't figure out where to change it to black. Any ideas?

    Here is the link to my test page: http://www.mealslikemagic.com/form-test

    Thanks in advance,
    Stacey

    Posted 12 years ago on Friday May 27, 2011 | Permalink
  2. Your theme is setting a white color value for paragraph tags, unordered lists, ordered lists and blockquote elements. You can add this CSS snippet to the end of your theme's stylesheet and the better specificity should override the existing rules.

    [css]
    body #content .page .gform_wrapper,
    body #content .page .gform_wrapper p,
    body #content .page .gform_wrapper ul,
    body #content .page .gform_wrapper ul li,
    body #content .page .gform_wrapper ol,
    body #content .page .gform_wrapper ol li{
    	color: #000;
    }

    screenshot: http://grab.by/aeim

    Ultimately, it looks like you're going to run into other problems besides your forms since you're using a white background. I personally would just locate and remove those rules since you're not going to want to have to keep working to override the white on white text/background.

    Check out style.css line 43 and line 429 for the offending rules.

    Posted 12 years ago on Friday May 27, 2011 | Permalink
  3. You guys rock. Thank you. I'll keep working my way through it.

    Stacey

    Posted 12 years ago on Friday May 27, 2011 | Permalink