<?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: cant adjust CSS for &#34;ginput_container&#34;</title>
		<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container</link>
		<description>Gravity Support Forums Topic: cant adjust CSS for &quot;ginput_container&quot;</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 16:51:01 +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/cant-adjust-css-for-ginput_container" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "cant adjust CSS for &#34;ginput_container&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container#post-76370</link>
			<pubDate>Wed, 19 Sep 2012 17:11:16 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">76370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Good news on the CSS.  Thank you for the update.&#60;/p&#62;
&#60;p&#62;Removing the extra jQuery depends on how it was added in the first place.  It could be in a plugin, in the theme's functions.php, in the header.php or footer.php of the theme, or even from a plugin.  You have to take a look through all the files (plugins and theme) in the wp-content folder to see how it's being added.  Remove them one at a time and test to be sure you don't lose functionality.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>steve2277 on "cant adjust CSS for &#34;ginput_container&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container#post-76359</link>
			<pubDate>Wed, 19 Sep 2012 16:08:18 +0000</pubDate>
			<dc:creator>steve2277</dc:creator>
			<guid isPermaLink="false">76359@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I edited the CSS as you suggested and cleaned up the extra spaces in the CSS and it all works great, TY!&#60;/p&#62;
&#60;p&#62;i know this is out of the scope but can you suggest the correct method for removing the extra jquery's?&#60;/p&#62;
&#60;p&#62;Best Regards.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "cant adjust CSS for &#34;ginput_container&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container#post-75398</link>
			<pubDate>Fri, 14 Sep 2012 16:48:50 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75398@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Additionally, unrelated to this problem, you have four copies of jQuery being loaded:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[html]
&#38;lt;script src=&#38;quot;http://globalgoldandsilver.com/wp-content/themes/global/js/jquery-1.3.2.min.js&#38;quot; type=&#38;quot;text/javascript&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://globalgoldandsilver.com/wp-content/themes/global/js/jquery-1.7.1.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;quot;text/JavaScript&#38;quot; src=&#38;quot;http://globalgoldandsilver.com/wp-content/themes/global/js/jquery-1.4.2.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script type=&#38;#39;text/javascript&#38;#39; src=&#38;#39;http://globalgoldandsilver.com/wp-includes/js/jquery/jquery.js?ver=1.7.1&#38;#39;&#38;gt;&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You only need one copy, the latest, properly enqueued in the head of the document. The others should be removed. It will cause you trouble at some point unless you take care of it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "cant adjust CSS for &#34;ginput_container&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container#post-75396</link>
			<pubDate>Fri, 14 Sep 2012 16:37:08 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">75396@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I assume you want the state drop down to be the same width, color, font and background as the other fields there?  Try changing line 15233 in your theme's style.css from this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
#gform_wrapper_5 input[type=&#38;quot;text&#38;quot;] {&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
#gform_wrapper_5 input[type=&#38;quot;text&#38;quot;],
body #gform_wrapper_5 select.gfield_select {&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will apply the same styles to the drop down which apply to the other text inputs in that area. &#60;/p&#62;
&#60;p&#62;However, I could not test this because the page was loading extremely slowly and the CSS was not loading reliably.  You might have to add additional rules, but this should apply to the drop down element.&#60;/p&#62;
&#60;p&#62;The stylesheet also has thousands of blank lines it in, which seems strange.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>steve2277 on "cant adjust CSS for &#34;ginput_container&#34;"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-adjust-css-for-ginput_container#post-75386</link>
			<pubDate>Fri, 14 Sep 2012 13:39:40 +0000</pubDate>
			<dc:creator>steve2277</dc:creator>
			<guid isPermaLink="false">75386@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;si i had a form all styled nice but had to remove &#34;state&#34; field which was plain text and replace it with a new &#34;state&#34; field which is a drop down menu type field. now i cant figure out how to make it style the same as the fields next to it.&#60;/p&#62;
&#60;p&#62;located at &#60;a href=&#34;http://globalgoldandsilver.com&#34; rel=&#34;nofollow&#34;&#62;http://globalgoldandsilver.com&#60;/a&#62;&#60;br /&#62;
the form on the right, look for the &#34;state&#34; field.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
