<?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: Question about inserting other text between form fields on the page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/question-about-inserting-other-text-between-form-fields-on-the-page</link>
		<description>Gravity Support Forums Topic: Question about inserting other text between form fields on the page</description>
		<language>en-US</language>
		<pubDate>Tue, 21 Apr 2026 02:09:08 +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/question-about-inserting-other-text-between-form-fields-on-the-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Kevin Flahaut on "Question about inserting other text between form fields on the page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/question-about-inserting-other-text-between-form-fields-on-the-page#post-1475</link>
			<pubDate>Fri, 13 Nov 2009 21:54:26 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">1475@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Wonderful. I'm pleased I could help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>realityshifter on "Question about inserting other text between form fields on the page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/question-about-inserting-other-text-between-form-fields-on-the-page#post-1474</link>
			<pubDate>Fri, 13 Nov 2009 21:48:55 +0000</pubDate>
			<dc:creator>realityshifter</dc:creator>
			<guid isPermaLink="false">1474@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Wow, that's fantastic! That's exactly what I was hoping for. I've been looking all over the place for a user-friendly way to do this. I'm so glad I found your site. I'm definitely going to order the plugin.&#60;/p&#62;
&#60;p&#62;Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Question about inserting other text between form fields on the page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/question-about-inserting-other-text-between-form-fields-on-the-page#post-1473</link>
			<pubDate>Fri, 13 Nov 2009 20:03:35 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">1473@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This version of Gravity Forms allows HTML in the field description area. You could put your links in there if you wanted and have this functionality.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://dl.dropbox.com/u/688846/gravityhelp/audioform_description.png&#34;&#62;Form Admin Screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you preferred to have the audio links lined up with the choices like in your example, it would take some CSS tweaking to pull off, but it's pretty easy to do. I replicated your example in just a few minutes with a simple form and a little markup and CSS in the page editor.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://dl.dropbox.com/u/688846/gravityhelp/audioform_sample.png&#34;&#62;Demo Screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I created the form with all the necessary fields and added it to a new page. Once the form was added into the page editor (HTML view) I added the links and a CSS style block directly into the editor and placed it directly above the form reference.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://dl.dropbox.com/u/688846/gravityhelp/audioform_editor.png&#34;&#62;Page Editor Screenshot&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Basically, I've absolutely positioned the unordered lists next to the corresponding form fields. (note: my content container is set to position:relative so the absolute positioning is relative to the form, not the top left corner of the page)&#60;/p&#62;
&#60;p&#62;Here's the code I added directly above the form short code. It's just to give you an idea of what I did, you'll need to customize everything to fit your particular form styles.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;style type=&#38;quot;text/css&#38;quot;&#38;gt;
ul.audiolists {position:absolute; left:225px;}
ul.audiolists li {list-style-type:none; margin:0 0 10px 0;}
ul.audiolists li a {background-image:url(http://dl.dropbox.com/u/688846/gravityhelp/play_icon.gif); background-repeat:no-repeat; background-position:left center; padding: 0 0 0 22px; display:block; line-height:22px;}
ul#audiolist1 {top:190px;}
ul#audiolist2 {top:355px;}
ul#audiolist3 {top:520px;}
&#38;lt;/style&#38;gt;
&#38;lt;ul id=&#38;quot;audiolist1&#38;quot; class=&#38;quot;audiolists&#38;quot;&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 1&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 2&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 3&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;ul id=&#38;quot;audiolist2&#38;quot; class=&#38;quot;audiolists&#38;quot;&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 1&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 2&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 3&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;ul id=&#38;quot;audiolist3&#38;quot; class=&#38;quot;audiolists&#38;quot;&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 1&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 2&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
	&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;Play Audio 3&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So, there are a couple of ways to accomplish this pretty easily. If you don't mind doing a little CSS work post form creation, you can style it pretty much any way you'd like to.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>realityshifter on "Question about inserting other text between form fields on the page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/question-about-inserting-other-text-between-form-fields-on-the-page#post-1469</link>
			<pubDate>Fri, 13 Nov 2009 17:06:55 +0000</pubDate>
			<dc:creator>realityshifter</dc:creator>
			<guid isPermaLink="false">1469@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Before I purchase the plugin, I have a question about whether or not it can handle the kind of form I need to build. I need a form that will allow the visitor to listen to three separate sound files and then click a radio button next to the one they like best. I have a plugin that handles playing the audio files wherever I insert the appropriate hyperlink or tag (the plugin is WP-Audio), but I need a form that will allow me to insert those links either above the list of radio buttons or next to each radio button.&#60;/p&#62;
&#60;p&#62;So basically, I need a plugin that can make a form with a layout that is something like either of the two layouts in this mock-up: &#60;a href=&#34;http://www.beyondawakening.com/images/form-layouts.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.beyondawakening.com/images/form-layouts.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can I do that with the Gravity Forms plugin? Every form plugin I've found so far will not allow me to insert any other text, links, or anything else so it appears between one field and the next field in the form. I need to be able to insert some text to describe each section, and to insert the links to the audio.&#60;/p&#62;
&#60;p&#62;Thanks in advance for your help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
