Contact Form Placeholder CSS

This isn’t a show stopper, but it bugs me. I can’t find the css to make the form placeholders a lighter grey. See here - http://sweetinspirationsllc.com/contact/

Thanks.

Hey Ramona!

Try using the CSS below and see if it works.

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
  color: pink;
}
:-moz-placeholder { /* Firefox 18- */
  color: pink;
}

If you want to target a specific form you can add in a Class and append it in the selector like so .contact-form ::-webkit-input-placeholder

Jun