PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Gravity form RECAPTCH display error - split by blank lines

  1. 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

    Posted 12 years ago on Tuesday September 11, 2012 | Permalink
  2. 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

    Posted 12 years ago on Saturday September 15, 2012 | Permalink
  3. 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

    Posted 12 years ago on Sunday September 16, 2012 | Permalink
  4. No problem. Glad you worked it out.

    Posted 12 years ago on Sunday September 16, 2012 | Permalink

This topic has been resolved and has been closed to new replies.