Last active
June 16, 2020 14:18
-
-
Save wpmonks/fb4be2145f2c712db202305ee267f606 to your computer and use it in GitHub Desktop.
Style Your Gravity Forms Placeholder
This file contains 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
#gform_wrapper_1 .gform_fields .gfield input::-webkit-input-placeholder { | |
/* Chrome/Opera/Safari */ | |
color: pink; | |
} | |
#gform_wrapper_1 .gform_fields .gfield input::-moz-placeholder { | |
/* Firefox 19+ */ | |
color: pink; | |
} | |
#gform_wrapper_1 .gform_fields .gfield input:-ms-input-placeholder { | |
/* IE 10+ */ | |
color: pink; | |
} | |
#gform_wrapper_1 .gform_fields .gfield input:-moz-placeholder { | |
/* Firefox 18- */ | |
color: pink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment