<?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: can i toggle CSS output to be on for one form, but off for another?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another</link>
		<description>Gravity Support Forums Topic: can i toggle CSS output to be on for one form, but off for another?</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 18:27:53 +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/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "can i toggle CSS output to be on for one form, but off for another?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another#post-80040</link>
			<pubDate>Wed, 10 Oct 2012 08:59:08 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80040@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If your contractor targeted fields without specifying a form, I would go back to the styles he created, and preface each style with a selector for that one specific form.  For example he used this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#field_1_19 .gfield_description,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change it to this to target JUST form 1 (or the form he created):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #content .gform_wrapper #gform_wrapper_1 #field_1_19 .gfield_description,&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will make the rules he created apply to just the form he created, and will allow you to use the Gravity Forms CSS for all your other forms.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shaunkrisher on "can i toggle CSS output to be on for one form, but off for another?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another#post-79880</link>
			<pubDate>Tue, 09 Oct 2012 16:44:03 +0000</pubDate>
			<dc:creator>shaunkrisher</dc:creator>
			<guid isPermaLink="false">79880@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;sorry for the long delay in response.  the site wasn't live yet and i had other fish to fry.  &#60;/p&#62;
&#60;p&#62;okay, so i add that line of content before every line that refers to fields?  Or do I need to figure out which ones to target?  I understand that we are now pointing formatting at the certain page, but I just still need help figuring out where those modifications go.  I am not sure which lines that refer to fields need to be addressed, or if it's all of them.&#60;/p&#62;
&#60;p&#62;the site is now up at trashtaxiofgeorgia.com
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "can i toggle CSS output to be on for one form, but off for another?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another#post-71402</link>
			<pubDate>Fri, 17 Aug 2012 00:56:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">71402@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The Output CSS setting is sitewide.  I'm not sure if there is a way to disable it on a per-form basis.&#60;/p&#62;
&#60;p&#62;Ideally though, the styles for your custom made form would be specific enough that they will always be applied to the elements and never be ridden.&#60;/p&#62;
&#60;p&#62;There are some style rules here:&#60;br /&#62;
&#60;a href=&#34;http://96.8.125.10/~trashtax/wp-content/themes/default/style.css&#34; rel=&#34;nofollow&#34;&#62;http://96.8.125.10/~trashtax/wp-content/themes/default/style.css&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However, they are fairly non-specific and would apply to all fields with these IDs (which can happen on multiple forms) and also the rules in the Gravity Forms forms.css are more specific already so they will likely be applied and these styles would be overridden. If the idea is to preserve the custom formatting you contractor created, you should make his selectors more specific.  I will post one example of what needs to be done.  You will have to repeat this process for all the specific styles he wants to apply to this form:&#60;/p&#62;
&#60;p&#62;Old&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
#field_1_19 .gfield_description,
#field_1_22 .gfield_description,
#field_1_23 .gfield_description,
#field_1_53 .gfield_description,
#field_1_54 .gfield_description,
#field_1_55 .gfield_description {margin-left:600px;margin-top:-27px;color:#F3F300 !important;float:left;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;New&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #content .gform_wrapper #gform_wrapper_1 #field_1_19 .gfield_description,
body #content .gform_wrapper #gform_wrapper_1 #field_1_22 .gfield_description,
body #content .gform_wrapper #gform_wrapper_1 #field_1_23 .gfield_description,
body #content .gform_wrapper #gform_wrapper_1 #field_1_53 .gfield_description,
body #content .gform_wrapper #gform_wrapper_1 #field_1_54 .gfield_description,
body #content .gform_wrapper #gform_wrapper_1 #field_1_55 .gfield_description {margin-left:600px;margin-top:-27px;color:#F3F300 !important;float:left;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I went a little crazy with the selectors.  You just need to ensure that your selector is more specific than the generic default selectors in forms.css.&#60;/p&#62;
&#60;p&#62;If you have any questions, please let us know.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>shaunkrisher on "can i toggle CSS output to be on for one form, but off for another?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-toggle-css-output-to-be-on-for-one-form-but-off-for-another#post-71377</link>
			<pubDate>Thu, 16 Aug 2012 17:49:53 +0000</pubDate>
			<dc:creator>shaunkrisher</dc:creator>
			<guid isPermaLink="false">71377@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rob Harrell was helping me with my form woes earlier.  &#60;/p&#62;
&#60;p&#62;I tried turning on CSS output because the formatting was acting strangely.  Turning it 'on' fixed the form you saw, but breaks the other form which was developed for me by an outside contractor.  &#60;/p&#62;
&#60;p&#62;Here's the one made for me:&#60;br /&#62;
&#60;a href=&#34;http://96.8.125.10/~trashtax/sign-up-form/&#34; rel=&#34;nofollow&#34;&#62;http://96.8.125.10/~trashtax/sign-up-form/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And here's the other one I've been trying to make work, myself:&#60;br /&#62;
&#60;a href=&#34;http://96.8.125.10/~trashtax/roll-off-dumpster-contact-form/&#34; rel=&#34;nofollow&#34;&#62;http://96.8.125.10/~trashtax/roll-off-dumpster-contact-form/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can I have one form turn on CSS output (so it looks nice) but not on the other (so it doesn't ruin the custom formatting he made)?&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
