Hi,
I would like to change the sale price to red color for my products., I’m using the craft theme.
Hi,
I would like to change the sale price to red color for my products., I’m using the craft theme.
Hi @scali24 ,
You can try the following code to change the color of the sale price.
s.price-item.price-item--regular {
color: red;
}
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Hello @scali24
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
s.price-item.price-item--regular {
display: none;
}
OR
span.price-item.price-item--sale.price-item--last {
display: none;
}