@Starin thank you I have to use this color :
#EA731C
it’s orange on blank
normally it’s good (maybe use bold?)
Users of Shopify’s Impulse theme are seeking to differentiate regular prices from sale prices through color coding—typically wanting regular prices in black and sale prices in red, with strikethrough original prices in grey.
Initial Solution Provided:
A CSS code snippet was shared to add to the theme.scss.liquid file:
.grid-product__price { color: #ff0000; }.grid-product__price--original { color: #000; }Recurring Problem:
Multiple users report this code incorrectly colors ALL prices red, including non-sale items. The desired outcome is:
Refined Solution:
An updated CSS selector was provided:
.grid-product__price--original + span + span.money { color: #e23737; }.grid-product__price--original { color: #ccc; } (for grey strikethrough)Current Status:
The discussion remains ongoing with several users still troubleshooting implementation issues. The helper (KetanKumar) continues requesting site URLs to provide customized solutions, and some users have shared private login details for direct assistance. One user mentions the issue also affects the Flex theme.
@Starin thank you I have to use this color :
#EA731C
it’s orange on blank
normally it’s good (maybe use bold?)