Tagged: CAPTCHA
We tried to switch to Twenty Thirteen theme and it looks fine but when Switching to Enfold the style of Captcha breaks. Please advise.
Hey bmccumber!
Try adding this to your custom CSS.
#recaptcha_area, #recaptcha_table {
height: 130px !important;
overflow: hidden !important;
width: 318px !important;
}
Cheers!
Elliott
That partially worked. Just the buttons on the right side of the text field still have weird margins
Hi!
Try adding this as well.
#recaptcha_reload_btn, #recaptcha_switch_audio_btn, #recaptcha_whatsthis_btn {
display: block !important;
height: 17px !important;
overflow: hidden !important;
top: -2px;
}
#recaptcha_switch_audio_btn { top: -5px !important; }
#recaptcha_whatsthis_btn { top: -7px !important; }
And play around with the top values.
Regards,
Elliott
When I align it there’s a gap in the bottom now :(
Hi!
Changing the values in Elliott’s code should lead you to the look you are after.
Cheers!
Rikard
Hi Rikard,
I did change the values and got that white gap on the bottom of 3 buttons. Any ideas?
Thank you.
Hi!
Add this:
a#recaptcha_whatsthis_btn {
overflow: visible !important;
}
a#recaptcha_whatsthis_btn:before {
content: '';
display: block;
width: 100px;
height: 5px;
background: #810200 !important;
bottom: -7px;
position: absolute;
z-index: 1000;
}
Best regards,
Ismael
Hi!
Try to adjust the bottom position of the background patch from -7 to 0 or until it covers the white space.
Best regards,
Ismael
Had to change z-index. Here’s the final code that worked for me:
a#recaptcha_whatsthis_btn:before {
content: '';
display: block;
width: 100px;
height: 6px;
background: #810200 !important;
bottom: -2px;
position: absolute;
z-index: 99999;
}