Hi, does anyone know how to change the discounted price to red?
1 Like
Hi @Derraa
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
.price--on-sale .price-item--regular {
color: red;
}
I mean the price of the products that are discounted.
@Derraa You can try to use this
.price-item--sale.price-item--last{
color: red;
}
Great this works! Is it also possible to make it more dark red?