I'm trying to change the font color of the placeholder text that appears in the input boxes before the visitor types any text.
Here's my example http://santa.parseapp.com/
See the text boxes at the bottom of the page. I think it's using a user agent stylesheet at the moment, which means the form elements dont have styles created?
I'm not sure which element I need to target with CSS. Here's what I've go:
form input[type=text] {
width: 300px;
margin-bottom: 7px;
font-size: 20px;
border: 0;
padding: 5px 7px;
background-color: #FF2950;
color: #fff;
}