Home / Admin / Changing the Submit Button Color
Duplicate Snippet

Embed Snippet on Your Site

Changing the Submit Button Color

Theis CSS snippet will change your submit button's color.

<10
Code Preview
css
.wpforms-form button[type=submit] {
    background-color: #024488 !important;
    border-color: #024488 !important;
    color: #fff !important;
    transition: background 0.3s ease-in-out;
}
.wpforms-form button[type=submit]:hover {
    background-color: #022B57 !important;
}

Comments

Add a Comment