I need help changing the discounted price across the entire website to a red color instead of black. I am using the Enterprise theme.
Hi apa_1,
The Enterprise theme uses these CSS classes for pricing:
price- For the container that holds both the pre-discount and post-discount priceprice–-on-salegets added to the.pricecontainer if an item has a discountprice__currentis used for post-discount price (or the price if there is no discount)price__wasis used for the pre-discount price
Therefore, adding this style to your theme’s CSS should make all the discounted prices red:
.price--on-sale .price__current {
color: red;
}
Hope this helps,
Tobe Osakwe - developer of Regios Discounts
Hey @apa_1
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
.price.price--on-sale {
color: red !important;
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
can you please share this page link?
Hi @apa_1
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Best regards,
Devcoder ![]()


