<?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: instructions hover to right hand side.</title>
		<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side</link>
		<description>Gravity Support Forums Topic: instructions hover to right hand side.</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:35:22 +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/instructions-hover-to-right-hand-side" rel="self" type="application/rss+xml" />

		<item>
			<title>Ethomit on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-33134</link>
			<pubDate>Sun, 21 Aug 2011 08:30:17 +0000</pubDate>
			<dc:creator>Ethomit</dc:creator>
			<guid isPermaLink="false">33134@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks guys, i'll try this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-33056</link>
			<pubDate>Fri, 19 Aug 2011 16:00:38 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">33056@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@ethomit You could possibly do this by adding a background-image containing your question mark image to your custom CSS for the description as outlined in the post above.  Then use CSS to position the content of that div so it doesn't overlap the background image.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-33048</link>
			<pubDate>Fri, 19 Aug 2011 15:46:13 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">33048@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@Ethomit,&#60;/p&#62;
&#60;p&#62;This should point you in the right direction.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/hint-box#post-13676&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/hint-box#post-13676&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ethomit on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-33036</link>
			<pubDate>Fri, 19 Aug 2011 14:10:26 +0000</pubDate>
			<dc:creator>Ethomit</dc:creator>
			<guid isPermaLink="false">33036@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I would like to do the same thing, but i want to add a little &#34;question mark&#34; image next to each form title, and the description appears only when the mouse is over this image. Just like in the administration of Gravity forms.&#60;/p&#62;
&#60;p&#62;Is there an easy way to do that ?&#60;/p&#62;
&#60;p&#62;(and sorry but i don't know if it's better to make a new post on the forum or to just write in this one)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jayd on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18871</link>
			<pubDate>Thu, 17 Feb 2011 19:06:05 +0000</pubDate>
			<dc:creator>jayd</dc:creator>
			<guid isPermaLink="false">18871@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That will work thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18862</link>
			<pubDate>Thu, 17 Feb 2011 18:49:28 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">18862@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would use CSS to set the font style for that element by adding additional CSS to the code Kevin provided you above.&#60;/p&#62;
&#60;p&#62;For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
    color: #790000;
    visibility: hidden;
    font-size: 14px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That would apply a 14px font size to the text within the .gfield_description element.&#60;/p&#62;
&#60;p&#62;If you aren't familiar with CSS you may want to check out this resource site:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.w3schools.com/css/default.asp&#34; rel=&#34;nofollow&#34;&#62;http://www.w3schools.com/css/default.asp&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you are going to be customizing things via CSS you will want to be sure you are doing things properly.  Customizations are just that, customizations.  So we can help you with simple things but ultimately if it's a customization you will have to write the code and implement it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jayd on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18859</link>
			<pubDate>Thu, 17 Feb 2011 18:28:34 +0000</pubDate>
			<dc:creator>jayd</dc:creator>
			<guid isPermaLink="false">18859@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you, another css question, right now the text size for field is really small, how or what code what I use to make it bigger?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18767</link>
			<pubDate>Wed, 16 Feb 2011 23:52:39 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">18767@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could do something simple with a couple of CSS rules. Basically you set the visibility of the description to hidden to begin with, then when you hover over the containing list item, show the description.&#60;/p&#62;
&#60;p&#62;This should give you the idea. You can tweak it from there.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
    color: #790000;
    visibility: hidden;
}

body .gform_wrapper .gform_body .gform_fields .gfield:hover .gfield_description {
    visibility: visible;
    float: right;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18758</link>
			<pubDate>Wed, 16 Feb 2011 21:46:01 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">18758@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, but you would have to write custom code to do so.  This isn't a built in feature so it isn't something Gravity Forms does out of the box.  It would be possible but you would have to write your own custom jQuery to make it do this.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jayd on "instructions hover to right hand side."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/instructions-hover-to-right-hand-side#post-18751</link>
			<pubDate>Wed, 16 Feb 2011 20:29:44 +0000</pubDate>
			<dc:creator>jayd</dc:creator>
			<guid isPermaLink="false">18751@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to  make the description/instructions hover to right hand side.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
