<?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: force a style on a specific field to ALL forms (not just one form)</title>
		<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form</link>
		<description>Gravity Support Forums Topic: force a style on a specific field to ALL forms (not just one form)</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 23:16:57 +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/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "force a style on a specific field to ALL forms (not just one form)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form#post-48719</link>
			<pubDate>Wed, 08 Feb 2012 13:21:44 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">48719@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Without seeing your form it's hard to say what it is. Like Rob says, there's no need to modify the default forms.css file and it's actually discouraged because updates will  overwrite that file.&#60;/p&#62;
&#60;p&#62;You may need to just use better CSS specificity to override styles defined in your theme.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_body .gform_fields .gfield.uppercase,
body .gform_wrapper .gform_body .gform_fields .gfield.uppercase input,
body .gform_wrapper .gform_body .gform_fields .gfield.uppercase label {
	text-transform: uppercase !important
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The &#34;!important&#34; declaration may or may not be necessary.. again, since I can't see your form yet I can't tell you for sure.&#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>Rob Harrell on "force a style on a specific field to ALL forms (not just one form)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form#post-48714</link>
			<pubDate>Wed, 08 Feb 2012 12:53:22 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">48714@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you provide a link to your form so I can check it out? You should also be placing styles into your theme's stylesheet because when you update the plugin, your modifications to the plugin-level stylesheets will get overwritten.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>swimtime on "force a style on a specific field to ALL forms (not just one form)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form#post-48713</link>
			<pubDate>Wed, 08 Feb 2012 12:50:36 +0000</pubDate>
			<dc:creator>swimtime</dc:creator>
			<guid isPermaLink="false">48713@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;hmmm... i've tried that too, but i thought i was doing something wrong.&#60;/p&#62;
&#60;p&#62;i placed the following in my stylesheet, in the gf form.css and the gf print.css:&#60;br /&#62;
.uppercase { text-transform: uppercase; }&#60;/p&#62;
&#60;p&#62;and then set the css class name to &#34;uppercase&#34; in the advanced tab (not with the quotes).&#60;/p&#62;
&#60;p&#62;have i missed something?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "force a style on a specific field to ALL forms (not just one form)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form#post-48708</link>
			<pubDate>Wed, 08 Feb 2012 12:24:51 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">48708@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You should be able to apply a class to the field you want to have this particular style and then use that class on each form.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>swimtime on "force a style on a specific field to ALL forms (not just one form)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/force-a-style-on-a-specific-field-to-all-forms-not-just-one-form#post-48707</link>
			<pubDate>Wed, 08 Feb 2012 12:15:09 +0000</pubDate>
			<dc:creator>swimtime</dc:creator>
			<guid isPermaLink="false">48707@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I want to force uppercase to one of my fields. i found this helpful line in your documentation:&#60;/p&#62;
&#60;p&#62;#field_XX_X.gfield .gfield_label {color: red}&#60;/p&#62;
&#60;p&#62;but i have more than one form and i want to force the style on all of them.&#60;/p&#62;
&#60;p&#62;possible?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
