<?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: How can I get the form fields/boxes side by side?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side</link>
		<description>Gravity Support Forums Topic: How can I get the form fields/boxes side by side?</description>
		<language>en-US</language>
		<pubDate>Mon, 06 Apr 2026 23:43:33 +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/how-can-i-get-the-form-fieldsboxes-side-by-side" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-30455</link>
			<pubDate>Tue, 19 Jul 2011 16:38:20 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">30455@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Actually, this example was based on a previous code snippet that created fieldsets. You can find that here.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/fieldsets#post-17019&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/fieldsets#post-17019&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-30422</link>
			<pubDate>Tue, 19 Jul 2011 14:55:14 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">30422@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It won't be filtered out.  It's possible, if you really study the code and implement it correct, to implement Fieldsets using the HTML blocks positioned correctly and using the correct HTML to close and open tags properly.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jevgenijs on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-30416</link>
			<pubDate>Tue, 19 Jul 2011 12:52:50 +0000</pubDate>
			<dc:creator>Jevgenijs</dc:creator>
			<guid isPermaLink="false">30416@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can I actually use the fieldset the same way by inserting it into HTML or it will be filtered off?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-29425</link>
			<pubDate>Thu, 07 Jul 2011 19:36:02 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">29425@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, you'd basically remove the fieldset stuff from the previous example and use div elements like this..&#60;/p&#62;
&#60;p&#62;First HTML block content&#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;field_column_1&#38;quot;&#38;gt;&#38;lt;!-- open the first div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label description_above&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---- Put form fields for the first column here...&#60;/p&#62;
&#60;p&#62;Second HTML block content&#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;field_column_2&#38;quot;&#38;gt;&#38;lt;!-- open the second div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label description_above&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---- Put form fields for the second column here...&#60;/p&#62;
&#60;p&#62;Third HTML block content&#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;field_column_3&#38;quot;&#38;gt;&#38;lt;!-- open the third div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label description_above&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---- Put form fields for the third column here...&#60;/p&#62;
&#60;p&#62;Fourth HTML block content&#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 third div --&#38;gt;

&#38;lt;div id=&#38;quot;field_column_4&#38;quot;&#38;gt;&#38;lt;!-- open the fourth div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label description_above&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---- Put form fields for the fourth column here...&#60;/p&#62;
&#60;p&#62;Fifth HTML block content&#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 fourth div --&#38;gt;

&#38;lt;div id=&#38;quot;field_column_5&#38;quot;&#38;gt;&#38;lt;!-- open the fifth div --&#38;gt;
&#38;lt;ul class=&#38;quot;gform_fields top_label description_above&#38;quot;&#38;gt;&#38;lt;!-- reopen the list --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;---- Put form fields for the fifth column here...&#60;/p&#62;
&#60;p&#62;Sixth (last) HTML block content&#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 fifth div --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Once you've done that, you would want to target those div elements and float them so they all work in columns.. here's a quick CSS example that you can tweak to get started.. place it at the end of your theme stylesheet and style away.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper div#field_column_1,
body .gform_wrapper div#field_column_2,
body .gform_wrapper div#field_column_3,
body .gform_wrapper div#field_column_4,
body .gform_wrapper div#field_column_5 {
	width:18%;
	height:400px
}
body .gform_wrapper div#field_column_1,
body .gform_wrapper div#field_column_2,
body .gform_wrapper div#field_column_3,
body .gform_wrapper div#field_column_4 {
	margin-right:1%;
	float:left
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope that points you in the right direction.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kathy on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-29423</link>
			<pubDate>Thu, 07 Jul 2011 19:21:39 +0000</pubDate>
			<dc:creator>Kathy</dc:creator>
			<guid isPermaLink="false">29423@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Kevin!&#60;/p&#62;
&#60;p&#62;Sadly a developer is not in his budget. :(&#60;/p&#62;
&#60;p&#62;So I'd replace &#34;fieldset&#34; with &#34;div&#34; in your example?&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-29421</link>
			<pubDate>Thu, 07 Jul 2011 19:13:48 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">29421@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If it were just a few simple things, I'd say to try using the CSS ready classes but they may not be ideal for your form layout.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/CSS_Ready_Classes&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There isn't a provision for 5 content columns though and with the amount of fields you have, they wouldn't end up working right or being grouped logically in your admin.&#60;/p&#62;
&#60;p&#62;I would suggest using the inline HTML fields to create div elements around the groups of fields, then using CSS to float the new div/groups into 5 columns. You have to be a little creative with the markup &#38;amp; placement but it's not difficult to do. Here's a post that details how I added fieldset containers to a form.. you should be able to modify that slightly for divs instead.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/fieldsets#post-17019&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/fieldsets#post-17019&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Either way, it's going to take some work and a pretty good understanding of CSS to pull it off. If you're not really comfortable with it, you might consider contracting a developer to help you put it all together. Here's a good place to find one if you need.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wpcandy.com/pros/experienced/with-gravity-forms&#34; rel=&#34;nofollow&#34;&#62;http://wpcandy.com/pros/experienced/with-gravity-forms&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kathy on "How can I get the form fields/boxes side by side?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-can-i-get-the-form-fieldsboxes-side-by-side#post-29418</link>
			<pubDate>Thu, 07 Jul 2011 18:53:48 +0000</pubDate>
			<dc:creator>Kathy</dc:creator>
			<guid isPermaLink="false">29418@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I need to recreate this form ( &#60;a href=&#34;http://www.statefundins.com/quote/life/&#34; rel=&#34;nofollow&#34;&#62;http://www.statefundins.com/quote/life/&#60;/a&#62; ), and can't figure out how to get the form fields/boxes side by side.&#60;/p&#62;
&#60;p&#62;I'm sure it's a CSS issue, but I don't know CSS well enough to make this happen. The site is in Thesis: &#60;a href=&#34;http://rckurpg.es/p4bY5y&#34; rel=&#34;nofollow&#34;&#62;http://rckurpg.es/p4bY5y&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Thanks for any and all help!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
