Tagged: CONTACT FORM, CSS
Hi. This is for other theme users looking for a solution because I looked at some of the past posts on changing the color of the fields in the Contact Form, but the given CSS wasn’t working. I’m guessing that perhaps the theme changed some code from “.main_color” (which was used in other posts) to “.socket_color”. Anyway, here’s what worked for me:
#top .socket_color input[type="text"], #top .socket_color textarea{
border-color: gray;
background-color: white;
color: gray;
}
By the way, the “textarea” portion is for the “message” field.