Hi, I would like to change the colour of the add to cart button on my website. For both the primary colour and the rollover colour and also for mobile. I am currently using the refresh theme.
Does anybody how this can be done? Any help would be much appreciated!
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.css->paste below code at the bottom of the file:
.product-form__buttons .product-form__submit {
color: white !important;
background: black !important;
}
.product-form__buttons .product-form__submit:hover {
color: black !important;
background: white !important;
}