I have been attempting to alter the captcha icon/logo in recaptcha v2. Initially, I tried to modify it using regular CSS without success. Then, I experimented with jQuery to determine if the iframe had loaded completely before proceeding with the change.
The icon/logo is fetched from a Google website via a CSS file where they reference the element .rc-anchor-logo-img
. This particular div contains the icon/logo and is styled as follows:
.rc-anchor-logo-img {
background: url(https://www.gstatic.com/recaptcha/api2/logo_48.png);
background-repeat: no-repeat;
}
This represents the original logo provided by Google.
https://i.sstatic.net/1E5sm.png
And I am looking to replace it with this one.
https://i.sstatic.net/t0rqw.png
If anyone could assist me with this task, that would be greatly appreciated. However, I suspect that the logo may not be customizable. Nevertheless, thank you for taking the time to read this or provide feedback. Have a wonderful day.