Created
October 12, 2022 20:41
-
-
Save Yalme/5d2af34008100bc8874b7322fd82b372 to your computer and use it in GitHub Desktop.
Google reCapcha renders out of screen FIX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// So, if after you submit form, recaptcha challenge/puzze appears outside of current view screen, you can fix this by adding simple CSS rule: | |
body > div > div > iframe { position: fixed; z-index: 9999; top: 10px; } | |
// This will force exactly recaptcha iframe to appear inside visible area, on top of other elements. | |
// If you want to say thanks: | |
// ETH 0x79B3a1febF8b3Aa6DAC1227237d1d0E0B015cbc2 | |
// BTC bc1qlp4f8jzrpj4yajj5dpy00lkj65vp8gy6dccv8d | |
// https://donationalerts.com/r/yalme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment