Home / Admin / WP Simple Pay: Custom Button Color
Duplicate Snippet

Embed Snippet on Your Site

WP Simple Pay: Custom Button Color

Using CSS, change the checkout button color from green to blue when using the Embedded or Overlay form display options

Code Preview
css
.simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el) {
	background-color: #0b749d;
}
.simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el):focus,
.simpay-styled .simpay-form-control .simpay-btn:not(.stripe-button-el):hover {
	background-color: #086285;
}

Comments

Add a Comment