<?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: Group or create field groups.</title>
		<link>https://legacy.forums.gravityhelp.com/topic/group-or-create-field-groups</link>
		<description>Gravity Support Forums Topic: Group or create field groups.</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 16:30:04 +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/group-or-create-field-groups" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Group or create field groups."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/group-or-create-field-groups#post-99676</link>
			<pubDate>Thu, 06 Dec 2012 13:35:15 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">99676@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The trick is to close the previous &#38;lt; li &#38;gt; and &#38;lt; ul &#38;gt; then add your HTML, then open the &#38;lt; ul &#38;gt; &#38;lt; li &#38;gt; again.  Please see this more verbose explanation by Kevin Flahaut. &#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>Josh on "Group or create field groups."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/group-or-create-field-groups#post-99637</link>
			<pubDate>Thu, 06 Dec 2012 11:34:38 +0000</pubDate>
			<dc:creator>Josh</dc:creator>
			<guid isPermaLink="false">99637@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to group fields into groups?&#60;/p&#62;
&#60;p&#62;Currently the form is outputs something like this...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;form&#38;gt;
    &#38;lt;div&#38;gt;
        &#38;lt;ul id=&#38;quot;gform_fields_2&#38;quot;&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_1&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_2&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_3&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_4&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_5&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_6&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_7&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
        &#38;lt;/ul&#38;gt;
    &#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For example I want to be able to group fields 2_3 to 2_6&#60;/p&#62;
&#60;p&#62;So the mark up would look like this...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;form&#38;gt;
    &#38;lt;div&#38;gt;
        &#38;lt;ul id=&#38;quot;gform_fields_2&#38;quot;&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_1&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_2&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_group_1&#38;quot;&#38;gt;
                &#38;lt;ul&#38;gt;
                    &#38;lt;li id=&#38;quot;gfield_2_3&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
                    &#38;lt;li id=&#38;quot;gfield_2_4&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
                    &#38;lt;li id=&#38;quot;gfield_2_5&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
                    &#38;lt;li id=&#38;quot;gfield_2_6&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
                &#38;lt;/ul&#38;gt;
            &#38;lt;/li&#38;gt;
            &#38;lt;li id=&#38;quot;gfield_2_7&#38;quot;&#38;gt;...&#38;lt;/li&#38;gt;
        &#38;lt;/ul&#38;gt;
    &#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Basiccally I need to do some custom styling. I tried putting the html block in either side of 2_3 to 2_6 but the html block is also wrapped in a &#38;lt; li &#38;gt;  block.&#60;br /&#62;
So you cant exactly hack it using the html block to put this in the top html field block,&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;li id=&#38;quot;gfield_group_1&#38;quot;&#38;gt;
     &#38;lt;ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then this in a lower html field block...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/ul&#38;gt;
&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;... as this breaks the page markup! Doh!&#60;/p&#62;
&#60;p&#62;Any ideas how I can group fields in a way like this?&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Josh
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
