Hi there,
I've used Firebug and Chrome's Inspection tool but can not find the css that controls elements within Contact Form 7 fields. The Colors/Forms section within the admin doesn't work as I'm using a One Color Skin. I'm trying to change 2 things through css:
1) The text color of characters that are inputted within each field (currently blue by default but want the text to be green).
2) One of the contact form fields is a dropdown. The hover color of the dropdown is currently blue, I'd like it to be green.
Any help with this would be greatly appreciated,
T
Comments
did you tried to use color options under Theme options > Colors > Forms section?
input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, select:focus, textarea:focus {Of course we get above css using Firebug.background-color: #000 !important;
border-color: #000 !important;
color: #FFF !important;
}
.wpcf7-form select { background: #000 !important; color: #FFF !important; }