Is there a way to align the Captcha and input box on the same line and reduce the height of the Captcha.
Is there a way to align the Captcha and input box on the same line and reduce the height of the Captcha.
I was able to reduce the height of the Captcha.
Glad you were able to figure it out. Pretty much everything can be done through CSS, but sometimes you'll need to add an !important tag before the semi-colon to get it to work as expected. All my best!
David,
I don't know what to edit to make the captcha and textbox align on the same line.
Can you link to your form so one of our support people can take a look and see what CSS magic they would have to do?
If you float: left the CAPTCHA, then you should have the Captcha next to the input, and can continue to style from there.
.gform_wrapper .gfield_captcha_container img.gfield_captcha {
border: none !important;
background: none !important;
float: left !important;
margin: 0 !important;
padding: 0 !important;
}
First I assume that I add your code to the theme style.css. Doing so nothing happened.