Sash
Sash

Reputation: 1

reCaptcha table style break - appears to have an extra border on the bottom, and white borders around buttons

reCaptcha is part of the wp-members plugin added to the site. For some reason, when it renders on the page though, i'm seeing white gaps between the buttons, and an extra border at the bottom. I can do html and css, but php is not my forte. Anybody know what's causing this or how I can fix it? Appears in opera, chrome, and firefox. also tested out the other themes for it (black, clean, etc) and all of them have similar problems.

link to page

link to screenshot

Upvotes: 0

Views: 419

Answers (3)

8hdYqZ
8hdYqZ

Reputation: 451

I had the same problem. In my case it was caused by a height setting I had assigned to all td elemets. I soved it by giving the respective table an ID like so:

    #table_id td
 {
    height: 60px;
 }

Upvotes: 1

Ron
Ron

Reputation: 1

I had the same, the cause is that the input has been set to: display: block.

This worked for me:

#recaptcha_widget_div input{display: inline;}

Upvotes: 0

Jelle Ferwerda
Jelle Ferwerda

Reputation: 1229

This is a html/CSS styling issue, and not caused by php. Check paddings, margins etc

Upvotes: 0

Related Questions