How do I change the button and font color of “submit” button in contact form?
Thank you.
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
quick / custom CSS:
.avia_ajax_form fieldset p .button{
background-color: #00000;
border-bottom-color: #000000;
border-left-color: #000000;
border-right-color: #000000;
border-top-color: #000000;
color: #000000;
}
color is the font color
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.main_color input[type='submit'] {
background-color: orange;
color: black;
border-color: orange;
}
.main_color input[type='submit']:hover {
background-color: red;
color: white;
border-color: red;
}
Cheers!
Yigit
Thank you, your support on here is the best!