I'm trying to remove this strange background from the contact form 7 submit button but I can't figure out how to.
Here is the button:
I just want to make it a regular button with a white background and black text.
Also, how do I remove this blue color when I try input text into one of the contact form fields?
Thank you very much!
Comments
Use this css
body #Content input.wpcf7-submit {background-color: red !important;
}
body #Content input.wpcf7-submit:hover {background-color: red !important;
color:blue !important;
}