Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save faisalahammad/00996c8f023965ef2f30e903d178d443 to your computer and use it in GitHub Desktop.
Save faisalahammad/00996c8f023965ef2f30e903d178d443 to your computer and use it in GitHub Desktop.
A simple way to change the placeholder text color in your form fields by adding CSS in Field Name → Styles → Wrap Styles → Advanced CSS, making sure to enable the "Show Advanced CSS Properties" option. The example CSS covers different browsers and lets you customize the placeholder text color by changing the color code. Please note that to add c…
input::placeholder {
color: #000;
}
input::-webkit-input-placeholder {
color: #000;
}
input::-moz-placeholder {
color: #000;
}
input:-ms-input-placeholder {
color: #000;
}
input:-moz-placeholder {
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment