<?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: Textarea will make extra space in layout</title>
		<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout</link>
		<description>Gravity Support Forums Topic: Textarea will make extra space in layout</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 04:52: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/textarea-will-make-extra-space-in-layout" rel="self" type="application/rss+xml" />

		<item>
			<title>WebbPlatsen on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-53709</link>
			<pubDate>Wed, 28 Mar 2012 16:56:14 +0000</pubDate>
			<dc:creator>WebbPlatsen</dc:creator>
			<guid isPermaLink="false">53709@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#38;gt; 1. How to place Submit button in the third column?&#60;/p&#62;
&#60;p&#62;I &#34;solved&#34; this with alignment for the gform_footer div.&#60;br /&#62;
&#60;code&#62;.gform_footer { text-align:right; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Is it possible to place the submit button wherever you want?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebbPlatsen on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-53552</link>
			<pubDate>Tue, 27 Mar 2012 07:05:55 +0000</pubDate>
			<dc:creator>WebbPlatsen</dc:creator>
			<guid isPermaLink="false">53552@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This web site is not public yet and behind auth but Kevin has created the form already earlier in this thread.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-53468</link>
			<pubDate>Mon, 26 Mar 2012 14:05:13 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">53468@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Do you have a link to your form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebbPlatsen on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-53464</link>
			<pubDate>Mon, 26 Mar 2012 13:51:27 +0000</pubDate>
			<dc:creator>WebbPlatsen</dc:creator>
			<guid isPermaLink="false">53464@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your fast and workable answer and sorry for my delay.&#60;br /&#62;
This works and your XML saved this situation.&#60;br /&#62;
One little issue is that I lost most of my css mods but I have almost resolved that too.&#60;/p&#62;
&#60;p&#62;Two more things,&#60;br /&#62;
1. How to place Submit button in the third column?&#60;br /&#62;
2. How to set a red border on a required field after Submit if not fulfilled?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-52634</link>
			<pubDate>Thu, 15 Mar 2012 23:27:50 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">52634@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, the Ready Classes float the content and if the elements are different sizes, you end up with a staggered effect. That's just how floats work. That said, the Ready Classes probably aren't the best choice for what you're trying to do.. oh wait, I think Rob already said that.. smart fellow that Rob.&#60;/p&#62;
&#60;p&#62;To pull this off the way you want, you'll need to use the HTML blocks to add markup to your form. What you want to do is close the main list structure in places and introduce div &#34;wrappers&#34; that you can float into columns. It sounds difficult at first, but it's pretty easy.. you'll end up adding 4 HTML blocks to your form. (remember to check the &#34;disable default margins&#34; option on each for this). Here we go.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/li&#38;gt;&#38;lt;!-- close the html field li --&#38;gt;
&#38;lt;/ul&#38;gt;&#38;lt;!-- close the list --&#38;gt;

&#38;lt;div id=&#38;quot;gf_content_col_1&#38;quot; class=&#38;quot;gf_faux_col&#38;quot;&#38;gt;&#38;lt;!-- open the first div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put content for first/left div here&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/li&#38;gt;&#38;lt;!-- close the html field li --&#38;gt;
&#38;lt;/ul&#38;gt;&#38;lt;!-- close the list --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- close the first div --&#38;gt;

&#38;lt;div id=&#38;quot;gf_content_col_2&#38;quot; class=&#38;quot;gf_faux_col&#38;quot;&#38;gt;&#38;lt;!-- open the second div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put content for second/middle div here&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/li&#38;gt;&#38;lt;!-- close the html field li --&#38;gt;
&#38;lt;/ul&#38;gt;&#38;lt;!-- close the list --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- close the second div --&#38;gt;

&#38;lt;div id=&#38;quot;gf_content_col_3&#38;quot; class=&#38;quot;gf_faux_col&#38;quot;&#38;gt;&#38;lt;!-- open the third div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put content for third/right div here&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!-- added inline classes for example --&#38;gt;
&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;
div#gf_content_col_1.gf_faux_col,
div#gf_content_col_2.gf_faux_col,
div#gf_content_col_3.gf_faux_col {
	width: 29%;
	float:left;
}
div#gf_content_col_1.gf_faux_col,
div#gf_content_col_2.gf_faux_col {
	margin-right: 3%
}
div#gf_content_col_3.gf_faux_col {
	clear:right;
}
/* resize the inputs in the columns */
div.gf_faux_col input.medium,
div.gf_faux_col input.large,
div.gf_faux_col textarea {
	width:96% !important
}
&#38;lt;/style&#38;gt;
&#38;lt;/li&#38;gt;&#38;lt;!-- close the html field li --&#38;gt;
&#38;lt;/ul&#38;gt;&#38;lt;!-- close the list --&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!-- close the third div --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here's the result&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/AgLQMO&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/AgLQMO&#60;/a&#62;&#60;br /&#62;
screenshot (validation): &#60;a href=&#34;http://bit.ly/xC6nvr&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/xC6nvr&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any you can download my test form to play with here..&#60;/p&#62;
&#60;p&#62;Download test form XML: &#60;a href=&#34;http://dl.dropbox.com/u/688846/gravityhelp/gravityforms-columntest-2012-03-16.xml.zip&#34; rel=&#34;nofollow&#34;&#62;Form (zip file)&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That should have you well on your way. Have fun with it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-52624</link>
			<pubDate>Thu, 15 Mar 2012 22:12:18 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">52624@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hmm, this is possible to do, however, I&#34;m not sure the ready classes would solve for it. I did this form styling for a client of mine:&#60;/p&#62;
&#60;p&#62;ubikuos.com/contactanos&#60;/p&#62;
&#60;p&#62;So I think to achieve this, might need to do some manual CSS labor - but it can be done.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WebbPlatsen on "Textarea will make extra space in layout"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/textarea-will-make-extra-space-in-layout#post-52617</link>
			<pubDate>Thu, 15 Mar 2012 18:51:12 +0000</pubDate>
			<dc:creator>WebbPlatsen</dc:creator>
			<guid isPermaLink="false">52617@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm trying to create a 3 cols layout with gf_left_third/gf_middle_third/gf_right_third and this works fins as long as I use input fields but when I add a textarea there will be a big space.&#60;br /&#62;
Screenshot will describe it better, &#60;a href=&#34;http://jarvens.com/wp-content/uploads/2012/03/gf_cols.png&#34; rel=&#34;nofollow&#34;&#62;http://jarvens.com/wp-content/uploads/2012/03/gf_cols.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I want &#34;Contact person&#34;, &#34;Phone&#34; etc just below &#34;Company&#34; field.&#60;br /&#62;
It's this possible to do?&#60;/p&#62;
&#60;p&#62;I have played around but I dont get it.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
