<?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: Styling Gravity forms - drop down arrow</title>
		<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow</link>
		<description>Gravity Support Forums Topic: Styling Gravity forms - drop down arrow</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 14:57:59 +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/styling-gravity-forms-drop-down-arrow" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34928</link>
			<pubDate>Fri, 09 Sep 2011 11:09:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">34928@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Rob, no worries man. We just want to make sure we understand the problem and try to help out. Glad you got it figured out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robd on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34925</link>
			<pubDate>Fri, 09 Sep 2011 10:58:00 +0000</pubDate>
			<dc:creator>robd</dc:creator>
			<guid isPermaLink="false">34925@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Both,&#60;/p&#62;
&#60;p&#62;Apologies, I've confused myself during this process. I tried the .select tag at the start and *I swear* it amended all fields, but I was obviously mistaken. Many thanks for your help, both of you.&#60;/p&#62;
&#60;p&#62;Rob
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34915</link>
			<pubDate>Fri, 09 Sep 2011 08:40:33 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">34915@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@robd,&#60;/p&#62;
&#60;p&#62;I'm really not sure what you're trying to do here. It seems like this is harder than it should be. We're just talking simple CSS inheritance to get the job done.&#60;/p&#62;
&#60;p&#62;You can target all of the &#34;drop-downs&#34; which are actually called &#34;selects&#34; in the markup using the method @illutic suggested if you want that rule to apply to all selects in all of your forms. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper select { width: 150px; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Conversely, you can use the unique form ID to apply this rule to only one form if you wish. Note the ID rather than the generic class used for inheritance here.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 select { width: 150px; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Or, you can even bit a bit more granular and target only the selects that are in the &#34;complex&#34;, prearraged fields like the address, etc.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex select { width: 100px; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All of these can be successfully targeted for all of your forms or for just one form or fields based on inheritance from a parent element. There's no need to have a special class or &#34;identifier&#34; applied to the select element itself.&#60;/p&#62;
&#60;p&#62;If you're not sure how to properly use CSS inheritance or to target the different form elements, there is a guide with examples on the following page.&#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>robd on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34910</link>
			<pubDate>Fri, 09 Sep 2011 05:18:49 +0000</pubDate>
			<dc:creator>robd</dc:creator>
			<guid isPermaLink="false">34910@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Illutic&#60;/p&#62;
&#60;p&#62;That changes the width of every field, not just every drop down. That's the issue; Kevin's approach works but only for specific fields ( you make the width of the dropdown wider than that of a surrounding element, effectively nudging the right hand side arrow out of view. Then you put a background image of the arrow into the field, and position it far right. )&#60;/p&#62;
&#60;p&#62;To do this automatically for all drop downs you would need a specific identifier for drop downs, as opposed to select, which amends all selectable fields.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hiranthi on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34909</link>
			<pubDate>Fri, 09 Sep 2011 04:55:36 +0000</pubDate>
			<dc:creator>Hiranthi</dc:creator>
			<guid isPermaLink="false">34909@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you'd like to change the styling of every dropdown, just use the following in your CSS:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
select { width:150px }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Or, if you'd like to use selects in gravity forms only:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_wrapper select { width:150px; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just as normal CSS selection of HTML elements :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robd on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34908</link>
			<pubDate>Fri, 09 Sep 2011 04:51:08 +0000</pubDate>
			<dc:creator>robd</dc:creator>
			<guid isPermaLink="false">34908@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks - that does work, but only for the specific element in that specific page. I want to provide the site to the client such that if they in future amend their form, it will automatically follow the style for the site, which won't work in this instance. Thanks for your help though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34715</link>
			<pubDate>Wed, 07 Sep 2011 14:29:22 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">34715@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;each field has a unique ID so you can use CSS inheritance to target specific elements.. something like this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #gform_wrapper_1 li#field_1_1 select {width:150px}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You just need to view the page source, get the ID from the parent list element and work from there.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robd on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34703</link>
			<pubDate>Wed, 07 Sep 2011 12:23:06 +0000</pubDate>
			<dc:creator>robd</dc:creator>
			<guid isPermaLink="false">34703@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Kevin, thought as much.. It would be possible if I could directly target the drop down's CSS; if I could specifically change just that width then it would work fine, and I could use the image replacement you mention. Unfortunately any amends affect all the fields on the page, so that then knocks fields out of alignment in terms of how wide they are. &#60;/p&#62;
&#60;p&#62;The only way forward I can see is either to leave as is, or to not use Gravity and code the form myself.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34685</link>
			<pubDate>Wed, 07 Sep 2011 10:07:22 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">34685@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The drop down arrow is part of the form control itself, it's not something you can style. Different browsers render the &#34;select&#34; form element differently.. selects in Safari look vastly different than those in Internet Explorer for example.&#60;/p&#62;
&#60;p&#62;There are some scripts/CSS tricks out there that actually hide the select element and then use replacement images for different styling. A quick Google search will return a few of these but I can't really vouch for any one. You'll need a decent level of skill to implement most of them as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>robd on "Styling Gravity forms - drop down arrow"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/styling-gravity-forms-drop-down-arrow#post-34683</link>
			<pubDate>Wed, 07 Sep 2011 09:58:32 +0000</pubDate>
			<dc:creator>robd</dc:creator>
			<guid isPermaLink="false">34683@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello - could anyone point me in the right direction to style the arrow in the 'drop down select' box on gravity forms?&#60;/p&#62;
&#60;p&#62;thanks in advance&#60;/p&#62;
&#60;p&#62;Rob
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
