Hi guys,
Any idea why the reCaptcha element is not displaying properly - I can see that another table row is being inserted but I have no idea why and what controls it? - see:
http://www.wgu.com.au/tempform/
Thanks in advance!
Andrew
Hi guys,
Any idea why the reCaptcha element is not displaying properly - I can see that another table row is being inserted but I have no idea why and what controls it? - see:
http://www.wgu.com.au/tempform/
Thanks in advance!
Andrew
Line 2409 of layout.css is causing your trouble. It sets a row height for all table row to 40px:
[css]
/* this is bad and we need to get rid of it */
table tr {
height: 40px;
}
I added this to skin.css (add this wherever your theme provider recommends adding your custom CSS:
[css]
.gform_wrapper .recaptchatable tr {
height: 100%;
}
Screenshot with that CSS applied http://minus.com/lbzWjUrvLxbj3C
Hello Chris,
You are a legend! All sorted :)
Thanks so much mate - I understand you went beyond your plugin responsibilities to help me out on this one - much appreciated!
Cheers,
Andrew
No problem. Glad you worked it out.