Change the color of price when is on sale -Craft them

Hi,

I would like to change the sale price to red color for my products., I’m using the craft theme.

1 Like

Hi @scali24 ,

You can try the following code to change the color of the sale price.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
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;
}