I tried to make any customization to Google no CAPTCHA reCAPTCHA and failed.
The main thing that I want to do is to change its width, height, and color.
Can any one help me please.
I tried to make any customization to Google no CAPTCHA reCAPTCHA and failed.
The main thing that I want to do is to change its width, height, and color.
Can any one help me please.
The noCaptcha reCaptcha client code is an iframe.
You can just choose between dark and light Google provided themes.
UPDATE: You cannot modify the content inside an iframe, unless it's the same domain. Some services let you pass parameters in the url query, but this is not the case.
I also faced same problem with google new captcha but this trick worked fine for me.
<div class="g-recaptcha" data-theme="light" id="google-captcha" data-sitekey="yoursecretkey" style="transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;"></div>
You can also check this link for more information. I hope this will help some one.