<?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: Custom form layout question</title>
		<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question</link>
		<description>Gravity Support Forums Topic: Custom form layout question</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:22:38 +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/custom-form-layout-question" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7267</link>
			<pubDate>Sat, 10 Jul 2010 23:49:24 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">7267@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No worries. Glad you got it working.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Michael on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7257</link>
			<pubDate>Sat, 10 Jul 2010 16:18:05 +0000</pubDate>
			<dc:creator>Michael</dc:creator>
			<guid isPermaLink="false">7257@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It works! Thank you very much for your help. I feel kind of stupid for the bracket mistake... I appreciate you taking the time to examine it close enough to catch it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7175</link>
			<pubDate>Thu, 08 Jul 2010 16:43:24 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">7175@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Jason,&#60;/p&#62;
&#60;p&#62;I'm looking at your form with my code inspector and don't see any reference to either CSS rule now. When I'm looking at the CSS file directly, I see the rule at the bottom.&#60;/p&#62;
&#60;p&#62;When running it through the validator checking for errors it was flagging that section. After some staring at it, I see the issue.. your syntax is wrong.. your brackets are mismatched.. both should be curly brackets. &#60;/p&#62;
&#60;p&#62;It should be like this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ul#input_4_1 {overflow:hidden;}
ul#input_4_1 li {float:left; width:25%;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You won't need that last line with the specific field id's either, these should apply the rule to all the children of that list.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Michael on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7169</link>
			<pubDate>Thu, 08 Jul 2010 15:48:58 +0000</pubDate>
			<dc:creator>Michael</dc:creator>
			<guid isPermaLink="false">7169@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for your quick response. I tried your suggestion and the result is a one column layout down the left side of the page. I tried the code you gave me with 25% and 23% and with and without the code I previously had... all results gave me the one column layout. &#60;/p&#62;
&#60;p&#62;Maybe this will help... Here's the line of code that I had previously that gave me the layout I described in the first post:&#60;/p&#62;
&#60;p&#62;#field_4_1 .gchoice_1_1, .gchoice_1_2, .gchoice_1_3, .gchoice_1_4, .gchoice_1_5, .gchoice_1_6, .gchoice_1_7, .gchoice_1_8, .gchoice_1_9, .gchoice_1_10, .gchoice_1_11, .gchoice_1_12 {&#60;br /&#62;
float: left;&#60;br /&#62;
width: 23%;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Jason
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7107</link>
			<pubDate>Wed, 07 Jul 2010 19:16:09 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">7107@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;looks like you missed one of the field ids in your rule. I believe that's causing the odd floating you're seeing. You can simplify this with some inheritance.. just target any list item in that checkbox list&#60;/p&#62;
&#60;p&#62;try this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ul#input_4_1 {overflow:hidden;}
ul#input_4_1 li {float:left; width:25%;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now, there are some properties (margins, padding, etc) that may effect the width percentage, so for 4 columns, you may actually have to specify the width as 23% or something like that. It depends on what they inherit from other CSS rules but you can tinker with it and see what works.&#60;/p&#62;
&#60;p&#62;Let me know if you still have problems and we'll proceed from there.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Michael on "Custom form layout question"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-layout-question#post-7104</link>
			<pubDate>Wed, 07 Jul 2010 18:51:14 +0000</pubDate>
			<dc:creator>Michael</dc:creator>
			<guid isPermaLink="false">7104@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have created a form on the following url:  &#60;a href=&#34;http://www.decoridesigns.info/style&#34; rel=&#34;nofollow&#34;&#62;http://www.decoridesigns.info/style&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What I would like to do is have a 4 column layout, but have the fields populate horizontally. What I did was make each field have a width of 25% and float left. I'm not sure why, but instead of having 3 rows of 4 fields, my result was 4 rows, the top row has 4 fields, the middle rows have 3 fields, and the bottom row has 2 fields.&#60;/p&#62;
&#60;p&#62;What would you suggest to achieve my desired outcome instead of the appearance that I currently have?&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Jason
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
