My contact form has multiple controls, but I'm having trouble changing the color of the name that is displayed in the control before a user starts typing their information. I tried using the color
property, but this ended up changing the color of the text input by the user.
/* Contact Form */
input[type="text"]#name {
color: #000000;
background-color : #ffffff;
}