<?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: Form width and scrolling issue</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue</link>
		<description>Gravity Support Forums Topic: Form width and scrolling issue</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 16:12:54 +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/form-width-and-scrolling-issue" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Form width and scrolling issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue#post-121560</link>
			<pubDate>Mon, 14 Jan 2013 10:19:30 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">121560@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@Rubiwane, I responded to your &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/form-width-too-short-how-could-i-change-the-width&#34; rel=&#34;nofollow&#34;&#62;other topic&#60;/a&#62; already and will close this one, as it is over a year old and unrelated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rubiwane on "Form width and scrolling issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue#post-121035</link>
			<pubDate>Sun, 13 Jan 2013 20:06:43 +0000</pubDate>
			<dc:creator>Rubiwane</dc:creator>
			<guid isPermaLink="false">121035@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Kevin,&#60;br /&#62;
I think i have the same problem.&#60;br /&#62;
Is it possible for you to take a look?&#60;br /&#62;
I m novice and i don t want to touch CSS if i m not sure.&#60;br /&#62;
My form is here:&#60;br /&#62;
&#60;a href=&#34;http://rt2012-attestation.com/test-formulaire-css/&#34; rel=&#34;nofollow&#34;&#62;http://rt2012-attestation.com/test-formulaire-css/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Wolfy on "Form width and scrolling issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue#post-23243</link>
			<pubDate>Thu, 14 Apr 2011 11:33:44 +0000</pubDate>
			<dc:creator>Wolfy</dc:creator>
			<guid isPermaLink="false">23243@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Awesome, Thank you!&#60;/p&#62;
&#60;p&#62;-M
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form width and scrolling issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue#post-23235</link>
			<pubDate>Thu, 14 Apr 2011 11:09:33 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">23235@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Part of your issue is the padding applied to the inputs by your theme stylesheet - default.css line 1822&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#contentbox form input {
    padding: 5px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then, there is a width set on the form element itself - default.css line 1816&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#contentbox form {
    padding: 0 0 20px;
    position: relative;
    width: 580px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You should be able to override those by putting this at the end of your theme stylesheet.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body #contentbox .gform_wrapper form {
	width:auto
}

body #contentbox .gform_wrapper form input[type=text],
body #contentbox .gform_wrapper form input[type=tel],
body #contentbox .gform_wrapper form input[type=url],
body #contentbox .gform_wrapper form input[type=email],
body #contentbox .gform_wrapper form input[type=file],
body #contentbox .gform_wrapper form input[type=password],
body #contentbox .gform_wrapper form input[type=number] {
	padding:5px 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;notice I chose to target the inputs by type rather than apply a blanket rule that would unnecessarily add padding to radio buttons &#38;amp; checkboxes which are inputs too.&#60;/p&#62;
&#60;p&#62;test screenshot: &#60;a href=&#34;http://d.pr/6PxV&#34; rel=&#34;nofollow&#34;&#62;http://d.pr/6PxV&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Wolfy on "Form width and scrolling issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-width-and-scrolling-issue#post-23233</link>
			<pubDate>Thu, 14 Apr 2011 10:46:23 +0000</pubDate>
			<dc:creator>Wolfy</dc:creator>
			<guid isPermaLink="false">23233@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The form i have on a site is getting cut off on the right side. Then if you tab across fields [ in IE] or you type in a really long last name, the whole form shifts a few pixels over to the right.&#60;/p&#62;
&#60;p&#62;There seems to be padding interfering with the form, but I can't seem to figure out where it's coming from.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pattysheehanandfriends.org/volunteers/&#34; rel=&#34;nofollow&#34;&#62;http://pattysheehanandfriends.org/volunteers/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank,&#60;/p&#62;
&#60;p&#62;-M
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
