<?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: Checkboxes - 2 columns instead of 1?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1</link>
		<description>Gravity Support Forums Topic: Checkboxes - 2 columns instead of 1?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 06:36: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/checkboxes-2-columns-instead-of-1" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1738</link>
			<pubDate>Mon, 23 Nov 2009 16:22:35 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">1738@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Fred,&#60;/p&#62;
&#60;p&#62;You can try adding these declarations to your style sheet.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.gfield_checkbox {
	overflow:hidden;
}

.gfield_checkbox li {
	width:44%!important;
	float:left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;that should float the checkboxes into 2 columns like your example form.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/KXo&#34; rel=&#34;nofollow&#34;&#62;screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you don't want all the checkboxes formatted that way, you can specify the ID of the field/list so only those float.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#input_1_86.gfield_checkbox {
	overflow:hidden;
}

#input_1_86.gfield_checkbox li {
	width:44%!important;
	float:left;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;where &#34;input_1_86&#34; is the ID of your field
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fred Romano on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1734</link>
			<pubDate>Mon, 23 Nov 2009 15:51:20 +0000</pubDate>
			<dc:creator>Fred Romano</dc:creator>
			<guid isPermaLink="false">1734@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a test form here &#60;a href=&#34;http://listingorders.com/test&#34; rel=&#34;nofollow&#34;&#62;http://listingorders.com/test&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Select a property type to see all the fields. I love the conditional aspect (something cforms lacks). I wonder if I can modify and apply the minimal.css (format of current form) i use in cforms???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1733</link>
			<pubDate>Mon, 23 Nov 2009 15:42:02 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">1733@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes this is possible, using CSS.  You would need to know how to float elements using CSS in order to do this.  If you create your form, and then show us where we can see your form I can look at the HTML and give you a quick code snippet you could use to accomplish this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fred Romano on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1729</link>
			<pubDate>Mon, 23 Nov 2009 15:14:57 +0000</pubDate>
			<dc:creator>Fred Romano</dc:creator>
			<guid isPermaLink="false">1729@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I mean like this &#60;a href=&#34;http://listingorders.com/realtor/realtor-residential&#34; rel=&#34;nofollow&#34;&#62;http://listingorders.com/realtor/realtor-residential&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You'll see the checkbox/item, then another checkbox/item in the same row. This is not possible yet?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1728</link>
			<pubDate>Mon, 23 Nov 2009 14:52:54 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">1728@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm not clear, are you referring to displaying checkboxes in a table? With the checkbox in one column and the text displayed with the checkbox in another column? If so, no there isn't anyway to do that currently.&#60;/p&#62;
&#60;p&#62;The form output is set as far as markup goes.  You have to use CSS to style and make changes to the display of the form.  You can't edit the markup beyond the capabilities Gravity Forms provides using custom CSS classes, etc.&#60;/p&#62;
&#60;p&#62;In a future release we plan on adding the ability to edit the actual  markup, but that will most likely be a 2.0 feature.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fred Romano on "Checkboxes - 2 columns instead of 1?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-2-columns-instead-of-1#post-1724</link>
			<pubDate>Mon, 23 Nov 2009 13:57:54 +0000</pubDate>
			<dc:creator>Fred Romano</dc:creator>
			<guid isPermaLink="false">1724@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, Is there a way to make the &#34;checkbox&#34; be 2 columns instead of 1 long one?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
