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

		<item>
			<title>mutantspace on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-31192</link>
			<pubDate>Fri, 29 Jul 2011 09:59:08 +0000</pubDate>
			<dc:creator>mutantspace</dc:creator>
			<guid isPermaLink="false">31192@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;man, that was fast thanks alot much appreciated
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-31190</link>
			<pubDate>Fri, 29 Jul 2011 09:46:50 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">31190@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@mutantspace, your issue is being caused by your theme. Line 892 of your theme's style.css file is setting a 91 pixel left margin on the recaptcha div.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
#recaptcha_widget_div {
    margin-left: 91px;
    padding-bottom: 20px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you disable the margin property there, you'll see that the element aligns properly.&#60;/p&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/q6fJtn&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/q6fJtn&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can add this to the end of your theme stylesheet and it should override the offending style.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body .gform_wrapper #recaptcha_widget_div {
    margin: 10px 0 0 0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;screenshot: &#60;a href=&#34;http://bit.ly/o7PoM0&#34; rel=&#34;nofollow&#34;&#62;http://bit.ly/o7PoM0&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mutantspace on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-31188</link>
			<pubDate>Fri, 29 Jul 2011 09:37:04 +0000</pubDate>
			<dc:creator>mutantspace</dc:creator>
			<guid isPermaLink="false">31188@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;hi ive just installed the gravity forms and have the same problem - im not that tech savvy but the recaptcha is not left aligned when i put shortcode into my contacts page @ &#60;a href=&#34;http://www.mutantspace.com/contact-our-skills-exchange/&#34; rel=&#34;nofollow&#34;&#62;http://www.mutantspace.com/contact-our-skills-exchange/&#60;/a&#62; thanks..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13929</link>
			<pubDate>Mon, 06 Dec 2010 09:16:14 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">13929@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Note: I have reworked the reCaptcha CSS rules in version 1.5 to override the default reCaptcha CSS which was causing this problem. Once 1.5 is released, the rules above shouldn't be necessary.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SarahL on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13521</link>
			<pubDate>Mon, 29 Nov 2010 10:12:01 +0000</pubDate>
			<dc:creator>SarahL</dc:creator>
			<guid isPermaLink="false">13521@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's worked - thanks very much!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13508</link>
			<pubDate>Sun, 28 Nov 2010 23:24:43 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">13508@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can try adding this to your custom.css.. should work just for Safari and Chrome&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
 body .gform_wrapper .left_label #recaptcha_widget_div,
body .gform_wrapper .right_label #recaptcha_widget_div {margin-left:32%;}
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>SarahL on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13506</link>
			<pubDate>Sun, 28 Nov 2010 22:35:05 +0000</pubDate>
			<dc:creator>SarahL</dc:creator>
			<guid isPermaLink="false">13506@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm using Chrome.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13505</link>
			<pubDate>Sun, 28 Nov 2010 22:31:40 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">13505@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What browser are you seeing the alignment problem in?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SarahL on "reCaptcha alignment"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/recaptcha-alignment#post-13503</link>
			<pubDate>Sun, 28 Nov 2010 22:03:51 +0000</pubDate>
			<dc:creator>SarahL</dc:creator>
			<guid isPermaLink="false">13503@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi&#60;br /&#62;
I've a small problem really but my Captcha won't line up with the other cells on my form. It keeps floating left as here: &#60;a href=&#34;http://www.livesharetravel.com/contact/&#34; rel=&#34;nofollow&#34;&#62;http://www.livesharetravel.com/contact/&#60;/a&#62;&#60;br /&#62;
Can anyone assist?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
