I’m wondering how to change the sale price color to red while keep the crossed price & original price (not on sale) color remain unchanged. Impluse theme
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.css and paste this at the bottom of the file:
.grid-product__price {
color: #ff0000;
}
.grid-product__price--original {
color: #000;
}

