<?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: Custom Styles</title>
		<link>https://legacy.forums.gravityhelp.com/topic/custom-styles</link>
		<description>Gravity Support Forums Topic: Custom Styles</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 21:11:37 +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/custom-styles" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Custom Styles"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styles#post-85661</link>
			<pubDate>Wed, 31 Oct 2012 09:56:18 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">85661@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Glad you got that working.  !important wins in (almost) every case, but if you can get more specific with your selectors, that will work as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iintegral on "Custom Styles"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styles#post-85655</link>
			<pubDate>Wed, 31 Oct 2012 09:51:17 +0000</pubDate>
			<dc:creator>iintegral</dc:creator>
			<guid isPermaLink="false">85655@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris&#60;/p&#62;
&#60;p&#62;You know how it is! After posting, I managed to solve the problem by adding the !important rule (so I am impressed you got it right!).&#60;/p&#62;
&#60;p&#62;Works like a charm.&#60;/p&#62;
&#60;p&#62;Thanks for a BBRRIILLIIAANNTT product!&#60;br /&#62;
Nano
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Custom Styles"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styles#post-85650</link>
			<pubDate>Wed, 31 Oct 2012 09:44:38 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">85650@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The textarea was 100% wide in both URLs.&#60;/p&#62;
&#60;p&#62;However, to ensure your custom CSS always 'wins' you might need to get more specific with your selectors.  For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper form .top_label textarea.textarea&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or add the important rule to your style as you have done in your second example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
width: 100% !important;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's a good article on CSS specificity:&#60;br /&#62;
&#60;a href=&#34;http://css-tricks.com/specifics-on-css-specificity/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/specifics-on-css-specificity/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iintegral on "Custom Styles"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-styles#post-85633</link>
			<pubDate>Wed, 31 Oct 2012 09:12:30 +0000</pubDate>
			<dc:creator>iintegral</dc:creator>
			<guid isPermaLink="false">85633@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;We are currently developing a site which needs to 100% responsive and display properly on any device. For this to work, we need Paragraph Text fields to scale to 100% of the width of its containers. To do this, I added the following &#38;lt;style&#38;gt;&#38;lt;/style&#38;gt; code on the page:&#60;/p&#62;
&#60;p&#62;&#38;lt;style&#38;gt;&#60;br /&#62;
.gform_wrapper .top_label textarea.textarea {&#60;br /&#62;
width: 100%;&#60;br /&#62;
}&#60;br /&#62;
&#38;lt;/style&#38;gt;&#60;/p&#62;
&#60;p&#62;Link: &#60;a href=&#34;http://ballito.beautyandspa.co.za/business/cellu-beauty-spa&#34; rel=&#34;nofollow&#34;&#62;http://ballito.beautyandspa.co.za/business/cellu-beauty-spa&#60;/a&#62; (open the contact form panel)&#60;br /&#62;
Theme: Canvas fro WooThemes.&#60;/p&#62;
&#60;p&#62;The style is being correctly applied but always overriden by GF. How do I fix this and why does this happen?&#60;/p&#62;
&#60;p&#62;To test the scenario, I also embedded the same form on a test page as follows:&#60;/p&#62;
&#60;p&#62;&#38;lt;style&#38;gt;&#60;br /&#62;
.gform_wrapper .top_label textarea.textarea {&#60;br /&#62;
width: 100% !important;&#60;br /&#62;
}&#60;br /&#62;
&#38;lt;/style&#38;gt;&#60;br /&#62;
[gravityform id=&#34;1&#34; name=&#34;Cellu Beauty Spa Contact Form&#34;]&#60;/p&#62;
&#60;p&#62;Link: &#60;a href=&#34;http://ballito.beautyandspa.co.za/test-3&#34; rel=&#34;nofollow&#34;&#62;http://ballito.beautyandspa.co.za/test-3&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This works fine!&#60;/p&#62;
&#60;p&#62;Can you please look into how to resolve the issue.&#60;/p&#62;
&#60;p&#62;Regards.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
