How can I change the color of a button on my cart page?

Hello everyone,

I would like to have the color changed of a button on my cart page. The color I would like to have is #F3896F. I want to keep the white text.

URL: https://glowee.nl/
Cart page: https://glowee.nl/cart

Any help is greatly appreciated!

Thank you.

Hi!

Try adding this code to the bottom of base.css

.cart__checkout-button.button {
  background: #f3896f;
  box-shadow: none;
}

.cart__checkout-button.button:hover {
  background: #f3896f;
  box-shadow: 0 0 0 .2rem #f3896f;
}

This worked perfectly, thank you!

@Dike Excellent!