Last active
July 23, 2018 16:53
-
-
Save m1ndspark/06f36bb5bc3c2a6c32f21769d6cf6e73 to your computer and use it in GitHub Desktop.
Center Google Re-Captcha for Gravity Forms
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
| @media only screen and (min-width: 320px) { | |
| body .gform_wrapper div.ginput_container.ginput_recaptcha { | |
| position: relative; | |
| width: 100%; | |
| padding-top: 1.5em | |
| } | |
| body .gform_wrapper div.ginput_container.ginput_recaptcha iframe { | |
| position: absolute; | |
| left: 50%; | |
| margin-left: -160px; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment