<?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: Making this form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/making-this-form</link>
		<description>Gravity Support Forums Topic: Making this form</description>
		<language>en-US</language>
		<pubDate>Thu, 23 Apr 2026 12:44:36 +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/making-this-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47671</link>
			<pubDate>Sat, 28 Jan 2012 17:11:42 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">47671@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could always position the submit button with a float and a negative margin, or you could position it absolutely, this was just a quick test in chrome dev tools:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
.gform_footer.top_label {
float: right;
margin-top: -46px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can get more specific on that selector if you don't want it to take place on all forms, the above is a more generic selector.&#60;/p&#62;
&#60;p&#62;I viewed your source and see the JS snippet for the value clear, but don't see any reference to a jquery file itself, which you will need in tandem.&#60;/p&#62;
&#60;p&#62;As far as the input goes, &#60;strike&#62;you can target the input to have a color (right now the placeholder is using that same input color because there is no difference HTML/CSS-wise between the two). There are some techniques out there that will allow you to place the label in the input as placeholder text and then you could try clearing that and using the input color for a different style. Seems like an awful-lot of trouble for that, but if that's what you'd like to do - go for it my friend.&#60;/strike&#62;&#60;/p&#62;
&#60;p&#62;Must have had a dead brain moment, you should be able to target the input {} and then input:focus {}&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body.custom #block-2 input#input_1_1.large {
color: red;
}
body.custom #block-2 input#input_1_1.large:focus {
color: green;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47645</link>
			<pubDate>Sat, 28 Jan 2012 09:50:23 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">47645@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Anyway you can post a link to your form?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tanksalot on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47631</link>
			<pubDate>Sat, 28 Jan 2012 00:56:23 +0000</pubDate>
			<dc:creator>tanksalot</dc:creator>
			<guid isPermaLink="false">47631@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I got some help over at Headway. There is no need to add a header.php as there is a place to add the script in the back end. That part is done.&#60;/p&#62;
&#60;p&#62;Question 1: Where can I target the placeholder text (only) to change its color. I am not seeing it in the CSS without it changing the text color of what the user would enter.&#60;/p&#62;
&#60;p&#62;Question 2: Is this working correctly? The text does not disappear. It did the first few times but no longer, and it never did with iOS hardware.&#60;/p&#62;
&#60;p&#62;Question 3: I'm still having trouble getting the button next to and inside the border with the placeholder text (and for some reason I have forgotten how to add a link here). Are we sure this can be done?&#60;/p&#62;
&#60;p&#62;Question 4: If I find that Q.3 cannot be done the next option is to allow the person to enter their email address in the field and just hit the enter button on their keyboard. The placeholder text would read: &#34;Enter your email, the press enter&#34;. Is this possible and if so, how?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tanksalot on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47549</link>
			<pubDate>Fri, 27 Jan 2012 14:33:07 +0000</pubDate>
			<dc:creator>tanksalot</dc:creator>
			<guid isPermaLink="false">47549@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Rob.&#60;br /&#62;
I was hoping I didn't have to use that first tutorial because I really don't know how to implement it within Headway Theme v.3.  I've made a child theme with just the basic files needed to do so ( functions.php, images folder, and styles.css). Do I need to create a header.php now? &#60;/p&#62;
&#60;p&#62;I figured CSS would be the ticket for moving the .button inline. I just haven't figured out how to move it into the field. Any thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47537</link>
			<pubDate>Fri, 27 Jan 2012 13:47:37 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">47537@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This should help you out with your placeholder text:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/clearing-default-form-field-values-with-jquery/&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/clearing-default-form-field-values-with-jquery/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You should also be able to position your submit button via CSS.&#60;/p&#62;
&#60;p&#62;Here is a reference: &#60;a href=&#34;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/resources/cssguide/css_guide.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tanksalot on "Making this form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/making-this-form#post-47534</link>
			<pubDate>Fri, 27 Jan 2012 13:32:21 +0000</pubDate>
			<dc:creator>tanksalot</dc:creator>
			<guid isPermaLink="false">47534@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I would like to make a form like the subscription form at &#60;a href=&#34;http://www.projectrev2012.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.projectrev2012.com/&#60;/a&#62; There is a placeholder and the send button looks to be inside the text field. I've gotten to the point that I have a text field, &#34;Enter your email here&#34; above the field, and a subscribe button below it. I've also put an HTML box beneath the field for the &#34;You can also Subscribe to our RSS feed&#34; bit. I know HTML 5 allows for placeholders and GF is not yet supporting that. As far as I can tell either is that form. How is it done? Can it be done with GF? Can someone walk me through the process of making that form (short of using that other plugin). If so, what need to be done?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
