<?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 to target individual forms for styling</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling</link>
		<description>Gravity Support Forums Topic: How to target individual forms for styling</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 18:13:22 +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-to-target-individual-forms-for-styling" rel="self" type="application/rss+xml" />

		<item>
			<title>Steve G on "How to target individual forms for styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling#post-9739</link>
			<pubDate>Sun, 12 Sep 2010 12:40:45 +0000</pubDate>
			<dc:creator>Steve G</dc:creator>
			<guid isPermaLink="false">9739@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That did it!&#60;/p&#62;
&#60;p&#62;Many thanks&#60;/p&#62;
&#60;p&#62;Steve G
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How to target individual forms for styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling#post-9722</link>
			<pubDate>Sat, 11 Sep 2010 19:37:30 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9722@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Steve, in your example above, you're specifying a class rather than an ID for &#34;gform_wrapper_2&#34;. You're also missing an identifier on the input ID. That's most likely your issue. Try this.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#gform_wrapper_2 #input_2_4{background-color:#c3ece9!important}&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Steve G on "How to target individual forms for styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling#post-9717</link>
			<pubDate>Sat, 11 Sep 2010 15:33:04 +0000</pubDate>
			<dc:creator>Steve G</dc:creator>
			<guid isPermaLink="false">9717@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Kevin,&#60;/p&#62;
&#60;p&#62;Great article and bookmarked.&#60;/p&#62;
&#60;p&#62;I think my issue is getting to the specificity using the right selectors. On Form_1 I have a generic selector for background color. '.gform_wrapper input{background-color:#c3ece9;}'&#60;br /&#62;
I'm using for form 2 &#60;code&#62;.gform_wrapper_2 input_2_4{background-color:#c3ece9!important;}&#60;/code&#62; , i.e. being very specific to the field. &#60;/p&#62;
&#60;p&#62;However it ain't working. What am I doing wrong?&#60;/p&#62;
&#60;p&#62;Steve G
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How to target individual forms for styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling#post-9715</link>
			<pubDate>Sat, 11 Sep 2010 14:25:53 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">9715@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Every form has a wrapper with a unique ID. You simply use that and CSS inheritance to cascade down and define different styles for each form.&#60;/p&#62;
&#60;p&#62;example: first form ID#1&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#gform_wrapper_1 input[type=text] {color:red}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;exmple: second form ID#2&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#gform_wrapper_2 input[type=text] {color:rblue}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I'm not sure how familiar you are with CSS inheritance, but this is a good article to learn more about it.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.smashingmagazine.com/2010/04/07/css-specificity-and-inheritance/&#34; rel=&#34;nofollow&#34;&#62;http://www.smashingmagazine.com/2010/04/07/css-specificity-and-inheritance/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Steve G on "How to target individual forms for styling"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-to-target-individual-forms-for-styling#post-9714</link>
			<pubDate>Sat, 11 Sep 2010 14:13:58 +0000</pubDate>
			<dc:creator>Steve G</dc:creator>
			<guid isPermaLink="false">9714@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm creating a second form - ID_2 which needs to be styled differently from form ID_1 which has a lot of customization on it. The form ID-2 is inheriting the styles from form ID_1. I need to: align the checkbox, captcha math box and submit button correctly , and give the paragraph text input box a background color.&#60;/p&#62;
&#60;p&#62;Form ID-1 is &#60;a href=&#34;http://autostoresuperstore.com/application/&#34; rel=&#34;nofollow&#34;&#62;here&#60;/a&#62;&#60;br /&#62;
Form ID_2 is &#60;a href=&#34;http://autostoresuperstore.com/referrals/&#34; rel=&#34;nofollow&#34;&#62;here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any help is much appreciated&#60;/p&#62;
&#60;p&#62;Steve G
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
