Tagged: Color, CONTACT FORM
Hello. I am using the following CSS to set the background color for the contact form fields on a website:
/*change color of contact form fields*/
#top .socket_color input[type="text"], #top .socket_color textarea{
border-color: #0a2f4f;
background-color: white;
color: #d18f2f;
}
On desktop, all the fields are the same color. However, on mobile, the email field is blue, while the rest are white. How can I get the email field on mobile to be the same color as the rest of the fields?