<?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: Dropdown background and text color</title>
		<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color</link>
		<description>Gravity Support Forums Topic: Dropdown background and text color</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 01:22:40 +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/dropdown-background-and-text-color" rel="self" type="application/rss+xml" />

		<item>
			<title>Richard Vav on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-294450</link>
			<pubDate>Sat, 01 Jun 2013 05:13:44 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">294450@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It looks like you figured it out by setting the line-height of the .chz-results li to 100% in your theme's stylesheet.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ultramel123 on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-294281</link>
			<pubDate>Sat, 01 Jun 2013 03:56:00 +0000</pubDate>
			<dc:creator>ultramel123</dc:creator>
			<guid isPermaLink="false">294281@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you Richard!! That is working perfectly.&#60;br /&#62;
Thank you so much for your help :)&#60;/p&#62;
&#60;p&#62;The dropdown text is now clearly visible. &#60;/p&#62;
&#60;p&#62;How could I &#34;extend&#34; the size of the dropdown lines? You will see on the form, that for the &#34;menu&#34; dropdown, I have included the details for the menu, and when you open the dropdown, the text seems &#34;squashed&#34;. &#60;/p&#62;
&#60;p&#62;Is there a way I could extend the size (height) of the text rows in the dropdown) ?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-285556</link>
			<pubDate>Wed, 29 May 2013 03:27:33 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">285556@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I installed a copy of the connections plugin on my localhost and have come up with a way of preventing it from including chosen a second time on pages containing a gravity form with the enhanced ui enabled.  If you add the following to your theme's functions.php file you can remove the extra CSS I suggested earlier&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;gform_enqueue_scripts&#38;#39;,&#38;#39;cleanup_connections&#38;#39;,10,2);
function cleanup_connections($form)
{
//stop connections plugin from including chosen again on pages with gravity forms enhanced ui dropdowns
    if (wp_script_is(&#38;#39;gforms_chosen&#38;#39;,$list=&#38;#39;queue&#38;#39;)){
        wp_deregister_script(&#38;#39;jquery-chosen-min&#38;#39;);
        wp_deregister_style(&#38;#39;connections-chosen&#38;#39;);
    }
    return false;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-283268</link>
			<pubDate>Tue, 28 May 2013 09:28:02 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">283268@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It looks like your issue is being caused by a plugin called connections loading a copy of the chosen (enhanced ui) stylesheet on every page regardless of whether it is required or not, this is bad practice by the plugin developers.  Add that to the fact that Gravity Forms has it's own styles for the chosen (enhanced ui) bundled in its formsmain.css stylesheet and you get a slightly confused dropdown with a mix of styles being used.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;link rel=&#38;#39;stylesheet&#38;#39; id=&#38;#39;connections-chosen-css&#38;#39;  href=&#38;#39;http://www.airport-game-lodge.co.za/wp-content/plugins/connections/css/chosen.min.css?ver=0.9.11&#38;#39; type=&#38;#39;text/css&#38;#39; media=&#38;#39;all&#38;#39; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The best way to solve this would be if the connections plugin developers fixed their plugin but for the time being you can try adding the following towards the bottom of your theme's stylesheet or wherever you are instructed to place custom css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.gform_wrapper .chzn-container .chzn-results .highlighted {
color: black !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ultramel123 on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-283226</link>
			<pubDate>Tue, 28 May 2013 09:06:27 +0000</pubDate>
			<dc:creator>ultramel123</dc:creator>
			<guid isPermaLink="false">283226@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Richard. &#60;/p&#62;
&#60;p&#62;Sure. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.airport-game-lodge.co.za/?page_id=2890&#34; rel=&#34;nofollow&#34;&#62;http://www.airport-game-lodge.co.za/?page_id=2890&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-281366</link>
			<pubDate>Mon, 27 May 2013 17:58:22 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">281366@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you post a link to a page containing the form in question, so we can get a look at your themes styles.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ultramel123 on "Dropdown background and text color"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dropdown-background-and-text-color#post-281357</link>
			<pubDate>Mon, 27 May 2013 17:51:14 +0000</pubDate>
			<dc:creator>ultramel123</dc:creator>
			<guid isPermaLink="false">281357@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;Where in my css could I change the background and text color of my dropdown fields please? The text is white, and the background (hover) color is white as well and is almost impossible to read. &#60;/p&#62;
&#60;p&#62;Any help would be greatly appreciated :)&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
