<?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: Changing entered text colors</title>
		<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors</link>
		<description>Gravity Support Forums Topic: Changing entered text colors</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 05:36:42 +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/changing-entered-text-colors" rel="self" type="application/rss+xml" />

		<item>
			<title>robjr on "Changing entered text colors"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors#post-20669</link>
			<pubDate>Wed, 16 Mar 2011 06:18:26 +0000</pubDate>
			<dc:creator>robjr</dc:creator>
			<guid isPermaLink="false">20669@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;thank you! That worked great. Much appreciated.&#60;/p&#62;
&#60;p&#62;Robert
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Changing entered text colors"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors#post-20654</link>
			<pubDate>Tue, 15 Mar 2011 23:12:57 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">20654@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@robjr&#60;/p&#62;
&#60;p&#62;This works fine in my test using Firebug.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;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=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {color:#red; font-size:20px}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/9v3M&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/9v3M&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The problem is that your stylesheet isn't being rendered by the browser completely.. it appears that a syntax error is preventing all of the rules from being applied.&#60;/p&#62;
&#60;p&#62;validation results: &#60;a href=&#34;http://j.mp/g60seC&#34; rel=&#34;nofollow&#34;&#62;http://j.mp/g60seC&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Check out this section at the end of your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* Styling for Workshops Master Page Listing*/
.galleriesThumb2 {
	margin: 30px 50px 50px 0px;
	.sideBySide, .sideBySide div {
		text-align: left;
		letter-spacing:0em;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Notice that the &#34;.galleriesThumb2&#34; rule is not closed out properly before declaring the &#34;sideBySide&#34; rules. That's breaking everything in the CSS after that, your form rules included. Add a nice curly bracket after that rule and you should be in business.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robjr on "Changing entered text colors"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors#post-20653</link>
			<pubDate>Tue, 15 Mar 2011 22:49:25 +0000</pubDate>
			<dc:creator>robjr</dc:creator>
			<guid isPermaLink="false">20653@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've added this to my Thesis 1.8 custom css file, but nothing changes - any thing I have to change to get it to work?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://robertrodriguezjr.com/contact/&#34; rel=&#34;nofollow&#34;&#62;http://robertrodriguezjr.com/contact/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Changing entered text colors"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors#post-17215</link>
			<pubDate>Fri, 28 Jan 2011 19:53:43 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">17215@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Your theme stylesheet sets a white font color for all of the page elements. This includes the form inputs so you can't see the white text on the white input background.&#60;/p&#62;
&#60;p&#62;You just need to target the form input fields and change the color. You can add this to the end of your theme stylesheet and you should be good to go,&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;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=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password],
body .gform_wrapper .gform_body .gform_fields .gfield select,
body .gform_wrapper .gform_body .gform_fields .gfield textarea {color:#000}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can find more information on targeting form elements for CSS changes here.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/css-targeting-samples/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/css-targeting-samples/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tacticalcc on "Changing entered text colors"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/changing-entered-text-colors#post-17204</link>
			<pubDate>Fri, 28 Jan 2011 16:25:46 +0000</pubDate>
			<dc:creator>tacticalcc</dc:creator>
			<guid isPermaLink="false">17204@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have posted two forms to ivyhaz.com under the menu items Application and Contact; however, in both cases, you can't see the text the visitor to the form enters. Is there a code that will allow me to change the entered text color for all forms on my site so those filling out the forms will be able to see what they are writing?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
