<?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: How Do I Change the Font Color in a Form?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-change-the-font-color-in-a-form</link>
		<description>Gravity Support Forums Topic: How Do I Change the Font Color in a Form?</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 13:28:05 +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/how-do-i-change-the-font-color-in-a-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "How Do I Change the Font Color in a Form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-change-the-font-color-in-a-form#post-25083</link>
			<pubDate>Mon, 09 May 2011 12:30:02 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">25083@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm a little confused as to what you are trying to do.  &#60;/p&#62;
&#60;p&#62;As it is right now when I view this form: &#60;a href=&#34;http://tapenews.com/thetapeworks_survey/&#34; rel=&#34;nofollow&#34;&#62;http://tapenews.com/thetapeworks_survey/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I see this: &#60;a href=&#34;http://grab.by/a5lM&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/a5lM&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The field labels are grey using the hex color #888888 &#60;/p&#62;
&#60;p&#62;See this screenshot of the CSS: &#60;a href=&#34;http://grab.by/a5lP&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/a5lP&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So if you changed it to #888888 that is what is currently reflected and is what is being used.  The color is grey because the CSS is telling it to be grey which is what #888888 is.&#60;/p&#62;
&#60;p&#62;If you want it black you need to change #888888 to #000000
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hillbillionaire on "How Do I Change the Font Color in a Form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-change-the-font-color-in-a-form#post-25080</link>
			<pubDate>Mon, 09 May 2011 12:22:43 +0000</pubDate>
			<dc:creator>hillbillionaire</dc:creator>
			<guid isPermaLink="false">25080@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin,&#60;/p&#62;
&#60;p&#62;Thank you for your response.&#60;/p&#62;
&#60;p&#62;I opened the style.css file for the form at&#60;br /&#62;
&#60;a href=&#34;http://tapenews.com/thetapeworks_survey/&#34; rel=&#34;nofollow&#34;&#62;http://tapenews.com/thetapeworks_survey/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I found the code you mentioned on line 1235 and the font color was defined as&#60;br /&#62;
color: #888&#60;br /&#62;
I changed that to color:#888888 and uploaded the edited file.&#60;br /&#62;
I also tried changing the font color to  color:#000000&#60;br /&#62;
The color of the font in the form didn't change after either edit.  &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://tapenews.com/thetapeworks_survey/&#34; rel=&#34;nofollow&#34;&#62;http://tapenews.com/thetapeworks_survey/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Here's a screen grab of the edited style.css file opened in dreamworks.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://tapenews.com/thetapeworks_survey/screen_grab.jpg&#34; rel=&#34;nofollow&#34;&#62;http://tapenews.com/thetapeworks_survey/screen_grab.jpg&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How Do I Change the Font Color in a Form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-change-the-font-color-in-a-form#post-25045</link>
			<pubDate>Mon, 09 May 2011 09:09:32 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">25045@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would have to define a new class in your theme stylesheet, then apply that class in the admin to each field or form and that's not really necessary. The easiest thing to do is to open your themes style.css file and change line 617 where the color is defined.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.entry-content label {
    color: #888888;
    font-size: 12px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.entry-content label {
    color: #000000;
    font-size: 12px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://grab.by/a5fx&#34; rel=&#34;nofollow&#34;&#62;http://grab.by/a5fx&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hillbillionaire on "How Do I Change the Font Color in a Form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-change-the-font-color-in-a-form#post-24983</link>
			<pubDate>Sat, 07 May 2011 03:35:53 +0000</pubDate>
			<dc:creator>hillbillionaire</dc:creator>
			<guid isPermaLink="false">24983@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a form in a Wordpress site using the 2010 theme.  The font color is for each field except the first one is appearing as a light gray.  The font color for the first field is appearing as black.&#60;br /&#62;
How do I change the font color in the fields where the font color is gray so it is black.&#60;br /&#62;
Here is the url for the form:&#60;br /&#62;
&#60;a href=&#34;http://tapenews.com/thetapeworks_survey/&#34; rel=&#34;nofollow&#34;&#62;http://tapenews.com/thetapeworks_survey/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;I understand that a CSS Class name can be defined for each field but I don't know the CSS Class name that would be for font color or how to adjust a CSS Class name.&#60;/p&#62;
&#60;p&#62;thanks,&#60;/p&#62;
&#60;p&#62;G. Harrison
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
