Placeholder text color
-
I have read many forums and blogs about how to change the placeholder text color in from the light gray default to something else and NONE of it works! I have added to my child theme’s stylesheet every iteration of the CSS below and the placeholder text is still too light for my taste. I would like it to be darker gray or black. It should be so simple! PLEASE HELP!
::-webkit-input-placeholder { /* WebKit browsers */
color: #000;
opacity: 1;
}:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #000;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #000;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #000;
opacity: 1;
}
- The topic ‘Placeholder text color’ is closed to new replies.