Hi
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: http://www.livesharetravel.com/contact/
Can anyone assist?
Thanks
Hi
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: http://www.livesharetravel.com/contact/
Can anyone assist?
Thanks
What browser are you seeing the alignment problem in?
I'm using Chrome.
You can try adding this to your custom.css.. should work just for Safari and Chrome
/* 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%;}
}
That's worked - thanks very much!
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.
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 @ http://www.mutantspace.com/contact-our-skills-exchange/ thanks..
@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.
[css]
#recaptcha_widget_div {
margin-left: 91px;
padding-bottom: 20px;
}
If you disable the margin property there, you'll see that the element aligns properly.
screenshot: http://bit.ly/q6fJtn
You can add this to the end of your theme stylesheet and it should override the offending style.
[css]
body .gform_wrapper #recaptcha_widget_div {
margin: 10px 0 0 0;
}
screenshot: http://bit.ly/o7PoM0
man, that was fast thanks alot much appreciated