Without changing the color of fonts anywhere else. Is this possible?
Thanks
Jonny
Hey deyowulf!
You can use this:
#top .header_color input[type='text'] {
color: blue;
}
::-webkit-input-placeholder { /* WebKit browsers */
color: red
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: red;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: red;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: red;
}
Cheers!
Ismael
Thanks Ismael