Hello @japorrero,
?Thank you for reaching out to support! Sure, you can change the button’s color with a CSS override depending on how you would like to display it on forms. You can do this for every form or you can do it on just one form.
If you are trying to do this on one form, you can use the following CSS in your code. If you use this, you will have to inspect the form button and get the button number. In my example, the button number is “wpuf_submit_288” and will have to be changed accordingly with what is on your form.
.weforms_submit_btn button[type=submit] {
background-color: #024488 !important;
border-color: #024488 !important;
color: #fff !important;
}
.wpuf_submit_288 button[type=submit]:hover {
background-color: #022B57 !important;
}
If you are trying to update every submit button on all of your forms, you can use the following to change them in a custom CSS style sheet.
.weforms_submit_btn button[type=submit] {
background-color: black !important;
border-color: #024488 !important;
color: black !important;
}
.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type=submit]{
background-color: black !important;
border-color: #024488 !important;
color: black !important;
}
Let me know if you have any issues or any further questions about setting that up. I will gladly assist where I can.
Thanks
Elana D.