<?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: possible CSS conflict on field widths</title>
		<link>https://legacy.forums.gravityhelp.com/topic/possible-css-conflict-on-field-widths</link>
		<description>Gravity Support Forums Topic: possible CSS conflict on field widths</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 17:09:28 +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/possible-css-conflict-on-field-widths" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "possible CSS conflict on field widths"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-css-conflict-on-field-widths#post-106042</link>
			<pubDate>Sat, 22 Dec 2012 15:12:38 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">106042@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You're welcome.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>3cstudio on "possible CSS conflict on field widths"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-css-conflict-on-field-widths#post-105993</link>
			<pubDate>Sat, 22 Dec 2012 11:38:25 +0000</pubDate>
			<dc:creator>3cstudio</dc:creator>
			<guid isPermaLink="false">105993@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Chris!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "possible CSS conflict on field widths"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-css-conflict-on-field-widths#post-105509</link>
			<pubDate>Fri, 21 Dec 2012 18:43:04 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">105509@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You should not modify the plugin css.  You can override the styles in your theme's stylesheet.  The issue is that your theme has included some Gravity Forms-specific CSS.  Take a look at &#60;a href=&#34;http://test.hollandbuscompany.com/wp-content/themes/startbox/includes/styles/startbox.css?ver=3.5&#34; rel=&#34;nofollow&#34;&#62;http://test.hollandbuscompany.com/wp-content/themes/startbox/includes/styles/startbox.css?ver=3.5&#60;/a&#62; line 766:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper input[type=&#38;quot;text&#38;quot;], body .gform_wrapper textarea {
    border: 1px solid #AAAAAA;
    color: #333333;
    font-size: 1em;
    padding: 5px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That &#60;strong&#62;padding: 5px;&#60;/strong&#62; is fouling things up and causing the border to disappear.  Please override your theme by using this CSS:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper input[type=&#38;quot;text&#38;quot;],
body .gform_wrapper textarea {
  padding: 0px!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Screenshot: &#60;a href=&#34;http://minus.com/lbcpcnvv8guJkK&#34; rel=&#34;nofollow&#34;&#62;http://minus.com/lbcpcnvv8guJkK&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>3cstudio on "possible CSS conflict on field widths"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/possible-css-conflict-on-field-widths#post-105501</link>
			<pubDate>Fri, 21 Dec 2012 18:04:04 +0000</pubDate>
			<dc:creator>3cstudio</dc:creator>
			<guid isPermaLink="false">105501@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;On: &#60;a href=&#34;http://test.hollandbuscompany.com/contact-us/&#34; rel=&#34;nofollow&#34;&#62;http://test.hollandbuscompany.com/contact-us/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Just wanted to see if there was a good fix for this -- noticed it in the last 2 installs of Gravity Forms:&#60;br /&#62;
 - end of fields' border for things such as Email Address or Name (Last) won't show&#60;br /&#62;
 - which leaves the field being 3-sided for a border, while right edge remains white&#60;/p&#62;
&#60;p&#62;I found that if I eliminated from line 237 of: /wp-content/plugins/gravityforms/css/forms.css?ver=1.6.11:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.gform_wrapper .ginput_complex .ginput_right input, .gform_wrapper .ginput_complex .ginput_right select {width:96% !important}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the earlier code (from line 231) would take effect and show the right-side border properly:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.gform_wrapper .ginput_complex input, .gform_wrapper .ginput_complex select {width:95% !important}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Seems that single percentage point makes the 1px right-border 'disappear'? If you need a better explanation, I can post a screenshot if needed.&#60;/p&#62;
&#60;p&#62;Just wanted to point this out in case it is something that can be fixed permanently instead of a temporary adjustment to the plugin styles or constant new addition to each theme's general style.css . . . thanks!&#60;/p&#62;
&#60;p&#62;Steve C.&#60;br /&#62;
3Cstudio
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
