Skip to content

Instantly share code, notes, and snippets.

@wpmonks
Last active June 16, 2020 14:18
Show Gist options
  • Save wpmonks/fb4be2145f2c712db202305ee267f606 to your computer and use it in GitHub Desktop.
Save wpmonks/fb4be2145f2c712db202305ee267f606 to your computer and use it in GitHub Desktop.
Style Your Gravity Forms Placeholder
#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