<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Background color for fields</title>
		<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields</link>
		<description>Gravity Support Forums Topic: Background color for fields</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 10:44:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/background-color-for-fields" rel="self" type="application/rss+xml" />

		<item>
			<title>JillChongva on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24662</link>
			<pubDate>Mon, 02 May 2011 16:56:51 +0000</pubDate>
			<dc:creator>JillChongva</dc:creator>
			<guid isPermaLink="false">24662@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You rock! That last one worked!&#60;/p&#62;
&#60;p&#62;Thanks a million!&#60;/p&#62;
&#60;p&#62;j :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24604</link>
			<pubDate>Sun, 01 May 2011 18:04:01 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">24604@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;easiest thing to do is to remove the CSS rule on line 53 of your orange.css file. If you can't do that, then you'll need to be more specific with your new rule to override it. Something like this example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #page.art input[type=&#38;quot;text&#38;quot;],
body #page.art input[type=email],
body #page.art input[type=url],
body #page.art input[type=password],
body #page.art input[type=tel],
body #page.art textarea,
body #page.art select
 {
    background-color:#fff
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>JillChongva on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24602</link>
			<pubDate>Sun, 01 May 2011 15:36:18 +0000</pubDate>
			<dc:creator>JillChongva</dc:creator>
			<guid isPermaLink="false">24602@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the help, but the fields are all still black.  I told the client NOT to choose that theme, but it is what it is.&#60;/p&#62;
&#60;p&#62;Anything else I can look at?&#60;/p&#62;
&#60;p&#62;j :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24423</link>
			<pubDate>Thu, 28 Apr 2011 12:29:11 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">24423@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, you're using the HTML5 input types (email, phone, etc) that aren't defined in your theme stylesheets. You can add those input types to your style rules like this..&#60;/p&#62;
&#60;p&#62;orange.css line 41 - change to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
input[type=&#38;quot;text&#38;quot;],
input[type=email],
input[type=url],
input[type=password],
input[type=tel]{
    background: url(&#38;quot;orange/input.jpg&#38;quot;) repeat-x scroll center bottom #FFFFFF;
    border: 1px solid #D2D2D2;
    color: #2B2B2B;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;style.css line 97 - change to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
input[type=&#38;quot;text&#38;quot;],
input[type=email],
input[type=url],
input[type=password],
input[type=tel] {
    font: 1.3em/1em Arial,Helvetica,Tahoma,sans-serif;
    padding: 7px 10px;
    width: 570px;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24422</link>
			<pubDate>Thu, 28 Apr 2011 12:23:55 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">24422@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Without seeing your form, I can't say what the actual problem is..probably the HTML5 input types, but you can use some custom CSS rules added to the end of your theme stylesheet to reset the input styles for your forms.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {
	background-color:#fff;
	color:#000
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;There are more examples here in the documentation as well&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JillChongva on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24421</link>
			<pubDate>Thu, 28 Apr 2011 12:19:26 +0000</pubDate>
			<dc:creator>JillChongva</dc:creator>
			<guid isPermaLink="false">24421@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Soot - sorry about that! Page is &#60;a href=&#34;http://50.22.108.32/~tifflpit/contact/&#34; rel=&#34;nofollow&#34;&#62;http://50.22.108.32/~tifflpit/contact/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;j :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24417</link>
			<pubDate>Thu, 28 Apr 2011 12:11:18 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">24417@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If the fields are different this is a theme CSS issue.  We don't set background colors on the fields, it's coming from your theme.  If you post a link to a page on your site where we can view the form we can make some CSS suggestions for you to implement.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JillChongva on "Background color for fields"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/background-color-for-fields#post-24413</link>
			<pubDate>Thu, 28 Apr 2011 12:09:18 +0000</pubDate>
			<dc:creator>JillChongva</dc:creator>
			<guid isPermaLink="false">24413@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Some of the fields on my contact form are white and some are black - I'd like them to be all white.  How do I do that?&#60;/p&#62;
&#60;p&#62;jill :)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
