php - reCaptcha styling is broken -
i implemented recaptcha following website. used recaptchalib.php google code , did not change in php file.
however, result recaptcha in website seems broke. buttons have weird white space above them. works fine, not pretty :(
here website has problem: http://### (removed)
here code used echo recaptcha form
require_once('recaptchalib.php'); $publickey = "xxxxxxxxxxx"; // got signup page echo recaptcha_get_html($publickey);
best regards
i had same problem on websites used recaptcha. css somehow distorted. discovered line-height in body tag. believe have same problem too. use css in style sheet.
#recaptcha_area, #recaptcha_table { line-height: 0!important;}
Comments
Post a Comment