Answers for "how to change the color of the submit button in wpforms"

CSS
0

how to change the color of the submit button in wpforms

.wpforms-form button[type=submit] {
    background-color: #024488 !important;
    border-color: #024488 !important;
    color: #fff !important;
}
 
.wpforms-form button[type=submit]:hover {
    background-color: #022B57 !important;
}
Posted by: Guest on March-06-2022

Code answers related to "how to change the color of the submit button in wpforms"

Browse Popular Code Answers by Language