<?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: Radio buttons separated by text</title>
		<link>https://legacy.forums.gravityhelp.com/topic/radio-buttons-separated-by-text</link>
		<description>Gravity Support Forums Topic: Radio buttons separated by text</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:58:34 +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/radio-buttons-separated-by-text" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Radio buttons separated by text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/radio-buttons-separated-by-text#post-293754</link>
			<pubDate>Fri, 31 May 2013 23:48:17 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">293754@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sure, you can do this with a little jQuery customization. Each radio button is in it's own list item with a specific class. By targeting that class and using jQuery's &#34;insertBefore&#34; goodness, you can insert a new list item/node into the list and add a &#34;sub label&#34; if you will to break up the list into more manageable sections.&#60;/p&#62;
&#60;p&#62;test screenshot: &#60;a href=&#34;http://i.imgur.com/5E8Yk3x.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/5E8Yk3x.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I basically recreated the list from the reference site on a test form, then used a HTML field at the end of the form to add my script and CSS. (that's a nifty trick too if you haven't used it before) Of course, this script is specific to my form (ID's and classes) but you can take it and modify it to use for your form. Just update the classes and IDs appropriately.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script&#38;gt;
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Battery Chargers&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_0&#38;quot;);
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Battery Isolators&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_2&#38;quot;);
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Inverters&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_4&#38;quot;);
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Isolation Protection&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_9&#38;quot;);
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Optics&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_11&#38;quot;);
jQuery(&#38;quot;&#38;lt;li&#38;gt;&#38;lt;h4 class=&#38;#39;sublabel&#38;#39;&#38;gt;Marine Accessories&#38;lt;/h4&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;).insertBefore(&#38;quot;.gchoice_2_12&#38;quot;);
&#38;lt;/script&#38;gt;

&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;
h4.sublabel {color: #790000; border-bottom: 1px solid #ccc; width: 100%; padding-bottom:6px;}
li#field_20_2 {margin-top: 24px;}
&#38;lt;/style&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and to make it easier to see what I'm talking about, I exported the sample form and put it here for you to download, import and tinker with if you would like.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://www.box.com/shared/static/wd3c0c9s40heterm7yu8.xml&#34; rel=&#34;nofollow&#34;&#62;https://www.box.com/shared/static/wd3c0c9s40heterm7yu8.xml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hope that helps out. Best of luck with it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nelsonschmidt on "Radio buttons separated by text"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/radio-buttons-separated-by-text#post-292741</link>
			<pubDate>Fri, 31 May 2013 12:04:00 +0000</pubDate>
			<dc:creator>nelsonschmidt</dc:creator>
			<guid isPermaLink="false">292741@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to rebuild this &#34;complex&#34; form. The main page has a list of 13 radio buttons grouped by type. Is there a way I can reproduce this? (The first page only allows you to select 1 option out of the 13.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://promariner.com/online_reg.php&#34; rel=&#34;nofollow&#34;&#62;http://promariner.com/online_reg.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Spencer
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
