Make Sale Price Red Pipeline

How do I make the sale price red on the pipeline theme?

Thank you!

1 Like

Hi @Mg71

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.product__grid__price span.price.on-sale {
    color: red;
}

And save.

result:

That worked thank you!

Do you know how to make it red on the product page also?