How to change the color of sold out button(Impulse theme)

Currently my sold out button has a white background and black text. I would like to change it to a black background with white text.

Hi @anteater2000

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Theme.css

.btn.btn--full.add-to-cart.btn--secondary {
    background-color: #000 !important;
    color: #fff !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.payment-buttons button.btn.btn--full.add-to-cart.btn--secondary {
background-color: #000000;
color: #ffffff;
}