Home / Admin / Change the Submit Button Color
Duplicate Snippet

Embed Snippet on Your Site

Change the Submit Button Color

Changes the color of the submit button for all WPForms.

The colors in this CSS are defined using hex codes, which you can read more at http://www.htmlcsscolor.com/.

<10
Code Preview
css
/* 
Change the color of the submit button
Original doc link: https://wpforms.com/developers/how-to-change-the-submit-button-color/
For support, please visit: https://www.facebook.com/groups/wpformsvip
*/
.wpforms-form button[type=submit] {
    background-color: #066AAB !important;
    border-color: #066AAB !important;
    color: #fff !important;
    transition: background 0.3s ease-in-out;
}
 
.wpforms-form button[type=submit]:hover {
    background-color: #066AAB !important;
}

Comments

Add a Comment