I wanted to ask if any one knows how to change the text colour from black to white on the add to cart button on the product page of my shopify site. I am using the dawn theme. Thankyou in advance.
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >base.css and paste this at the bottom of the file:
.product-form__submit {
color: white;
}
Try this code, but add it to section-main-product.css file
.product__info-container .product-form .product-form__submit {
background-color: red !important;
color: white;
}
Try it and let me know
