How can I change the sale price color in the collection list?

Hello, I need help changing the sale price color on the collection list. Both the old price and the sale price are black, but I would like to change the sale price to #EE0000 in the collections list, please. I’m using the “Dawn” theme version 8.0.0.

Website: https://home-wonder.us/

Screenshot:

Hi @Hans_8 ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-price.css->paste below code at the bottom of the file:

span.price-item.price-item--sale.price-item--last {
    color: #EE0000
}

Hope my answer will help you.

Best regards,

Victor | PageFly

2 Likes

Add the following css to base.css:

.price .price-item.price-item--sale {
    color: #EE0000;
}
1 Like