<?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: Option to display field descriptions above field</title>
		<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field</link>
		<description>Gravity Support Forums Topic: Option to display field descriptions above field</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 00:06:46 +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/option-to-display-field-descriptions-above-field" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Option to display field descriptions above field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field#post-3409</link>
			<pubDate>Mon, 15 Feb 2010 20:16:15 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">3409@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We do plan on adding this in a future release.  We are always looking at ways to make the plugin better and development will never be &#34;done&#34; as there are always things to add and improve.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Option to display field descriptions above field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field#post-3403</link>
			<pubDate>Mon, 15 Feb 2010 19:24:04 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">3403@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@illinoisharley: Thanks for this. It's a short-term workaround though so I do hope to see a solution that allows the user to configure in the admin console.&#60;/p&#62;
&#60;p&#62;@Kevin Flahaut: The jQuery solution is also awesome, but longer term an admin console solution would be appreciated.&#60;/p&#62;
&#60;p&#62;That said, is there not a way we can optionally have meaningful names for ids, i.e. field_my_options vs. field_2_5?  The latter is really hard to maintain and thus fragile.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Option to display field descriptions above field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field#post-3385</link>
			<pubDate>Mon, 15 Feb 2010 10:16:05 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">3385@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here's an alternate method that you can try. It uses jQuery to reposition the description.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
  &#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
  $(document).ready(function() {

  $(&#38;#39;li#field_xx_yy .gfield_description&#38;#39;).insertAfter($(&#38;#39;li#field_xx_yy .gfield_label&#38;#39;));

  });
  &#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You'll want to add this to your page template or your header.php file. If you're already calling the jQuery library, you can omit that initial script reference. You'll just need to replace the &#34;#field_xx_yy&#34; with your actual field ID, something like &#34;#field_15_4&#34;.&#60;/p&#62;
&#60;p&#62;You can repeat that for each description you would like to relocate. The benefit to doing it this is that there is less CSS manipulation (maybe a few margin/padding tweaks) and that it displays inline so will adjust to fit varying lengths of text rather than having to rely on specifying heights in the CSS.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://grab.by/2qK4&#34; rel=&#34;nofollow&#34;&#62;view a screenshot&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Option to display field descriptions above field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field#post-3381</link>
			<pubDate>Sun, 14 Feb 2010 23:53:40 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">3381@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could use CSS to reposition the description, as described by Kevin here:&#60;br /&#62;
&#60;a href=&#34;http://forum.gravityhelp.com/topic/how-to-create-single-checkbox-that-is-required-for-confirming-tc-for-example#post-2207&#34; rel=&#34;nofollow&#34;&#62;http://forum.gravityhelp.com/topic/how-to-create-single-checkbox-that-is-required-for-confirming-tc-for-example#post-2207&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Anonymous on "Option to display field descriptions above field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/option-to-display-field-descriptions-above-field#post-3379</link>
			<pubDate>Sun, 14 Feb 2010 23:35:49 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">3379@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm wondering if you could add an option to display the description about the field, both on a single field and globally for a form?&#60;/p&#62;
&#60;p&#62;Where I need right now is for a large number of checkboxes; the description is &#34;below the fold&#34; and I fear people will never see it.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
