How to Change Add To Cart Button Color (Sense Theme)

Hello everyone,

I would like to have my Add to Cart button colored Black instead of white on the Product Pages.

I checked other posts, but I don’t have a theme.css file.

So please reply if you know another file where I can change a specific code or something.

I am using Sense theme by the way.

Thank you very much!

HI @SL14

Could you share with me the page url? I will help you check it.
Or instead of theme.css file you can also search for file base.css/theme.scss.css.

Hi @SL14
If you only want to change the style for the button add to cart,
You can try follow this path:
Themes => edit code => asset => section-main-product.css
and add this code to bottom of the file section-main-product.css

.product-form__submit{
background: black;
color: white;
}
3 Likes

Thank you very much @ExpertRookie !!

It worked!

1 Like