Sense Theme-Change Discounted price to red

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.
Screenshot 2022-11-19 at 17.48.02.png

@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?