the captcha box is off the page?
See screenshot in dropbox below
Hey Darren,
When checking your contact page, I only see the recaptcha size issue in tablet mode (768px) so try this code in the General Styling > Quick CSS field to target just that size:
@media screen and (max-height: 769px){ #rc-imageselect, .g-recaptcha {transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;} }
Please clear your cache and review.
Best regards,
Mike
Mike,
Didn’t work?
Added Css. and cleared cache its still overhanging
are you sure this part of the css is rigght: #rc-imageselect
Its comes up in red
Hi,
I re-wrote it so it will not change mobile view:
Scale by 40 for Tablet:
and scale by 55 for everything above:
@media only screen and (min-width: 844px) { div.g-recaptcha {transform:scale(0.55)!important; -webkit-transform:scale(0.55)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}
@media only screen and (min-width: 768px) and (max-width: 843px) { div.g-recaptcha {transform:scale(0.40)!important; -webkit-transform:scale(0.40)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}
One of the issues with this plugin is that it is pulled in as a iframe so it may be hard for your css to control it depending when the iframe is loaded. Perhaps a better solution would be to allow your contact form to have 1/2 of the page instead of 1/4, you could put the “Thank you” paragraph below the contact form.
Best regards,
Mike
Thanks Mike I made a couple of changes to the sizing and its all good now.
Thanks for your assistance
Darren
Hi Darren,
Glad that Mike helped you. Thanks for using Enfold :)
Best regards,
Nikko