We would like to change the sale price to a red colour and say "NOW: " before the price. In this case this is the £967.49.
It should only apply to products that have a sale price active.

A user wants to change the sale price color to red and add “NOW:” text before the price on product pages, but only when a sale price is active.
Initial Solutions Provided:
theme.liquid file above the </body> tagComplications Encountered:
product-template.liquid fileproduct.compare_at_price > product.priceAdditional Request:
A separate user (Jim3) joined asking how to change the sale badge color to red while keeping the announcement bar black. Initial suggestion to modify badge colors in Theme Settings affected both elements simultaneously.
Current Status:
The original issue appears partially resolved but with ongoing refinements needed. The secondary request about isolating sale badge color changes remains unresolved and requires custom CSS targeting specific elements.
We would like to change the sale price to a red colour and say "NOW: " before the price. In this case this is the £967.49.
It should only apply to products that have a sale price active.

Hey @ChrisW3
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @ChrisW3
Go to your Online store > Themes > Edit code > open theme.liquid file, add this code under element
Go to your Online store > Themes > Edit code > open product-template.liquid file, add this code below before
{% if product.compare_at_price_max > product.price and section.settings.product_show_saved_amount %}
{% endif %}
Hi, this didn’t work, I can give you access if it is easier?
Please message me your Collaborator request code in store admin > Settings > Users and permission so I can send request access and help you
Hello @ChrisW3
To change the sale price styling for products with an active sale, you’ll need to modify your theme’s code. Here’s a general guide on how you can achieve this in Shopify:
Access Theme Code:
Go to the Online Store
Edit Code
Find theme .liquid file
Add the following code at the bottom of the file above tag
Locate Product Template:
Identify Sale Price Section:
Modify Code:
{% if product.compare_at_price > product.price %} NOW: {{ product.price | money }} {{ product.compare_at_price | money }} {% else %} {{ product.price | money }} {% endif %}
Save Changes:
Test:
Please note that modifying code can have unintended consequences, and it’s recommended to make a backup or work on a staging environment before making changes to the live theme. If you’re not comfortable with code modifications, please write us at info@mandasa.in
Many Thanks,
Mandasa Technologies
Top rated Shopify Experts
https://www.shopify.com/partners/directory/partner/mandasa-technologies
https://www.mandasa.in/
Email: [email removed]
Hello,
Hope you are doing great! And thank you for your help in the shopify community!
Is it possible for some further guidance how I could change the price and the Sale mark in red?
I am attaching below a screenshot of what I mean. Thanks in advance!
Kind regards, Kaloyan
I tried your instructions already by myself but I couldn’t manage
Could you share your store URL so I can check?
Yes, thank you!
Hey, Dan
Is everything okay? Did you saw the URL you asked for?
HI @Jim3 , Your store has password protected
Yes, excuse me about that. Here it is
pass: langau
From Online Store > Themes > Customize > Theme settings > Badges, you can change color of sale badge
Unfortunately this is changing the colour of the announcement bar and the sale badge. I want only the Sale badge to be red and the announcement bar to stay black. Do you know how could we do this?