1. Can you please provide me with some Quick CSS to make all of the “Submit Buttons” on the contact forms look like the transparent button I have highlighted on the attached image? Here is the code I used:
.transparent-button a.avia-button {
background: transparent !important;
border: 2px solid #188ece !important;
}
.transparent-button a.avia-button { color: #188ece; }
2. Is there a way to make it so when the user hovers over these transparent buttons the background of the button changes to #188ece and the text changes to white? So it works similar to the way these transparent buttons work http://us-themes.com/demo/?theme=ImprezaWP
Thanks in advance!
Hey!
Try adding this code to the Quick CSS:
.avia_ajax_form input.button {
color: #188ece !important;
background: transparent !important;
border: 2px solid #188ece !important;
}
.avia_ajax_form input.button:hover {
color: white !important;
background: #188ece !important;
}
Cheers!
Josue
Thank you so much! Resolved.