I’m using the Contact form available (and I like it just fine), but I can’t figure out what the id is so I can change the CSS.
I’d like to change the color of the labels (Name, Email, Message…etc), as well as the background color of the input area.
What is the id to use?
I tried .contact-form {font-color #008000;} – but no luck.
Thanks!
Hey!
Color for labels:
.avia_ajax_form label{
color: red !important;
}
Background for fields:
.avia_ajax_form input[type='text'], .avia_ajax_form input[type='email'], .avia_ajax_form textarea{
background: red !important;
}
Cheers!
Josue