A user wants to modify product pricing display in the Dawn theme to make discounts more prominent. Currently, prices appear in a standard format, but they want:
Desired changes:
Discounted price displayed first (before original price)
Discounted price shown in red font
A discount percentage box added above the pricing
One responder notes that while CSS can handle text alignment changes, adding the discount percentage box requires Liquid code modifications to the product cards.
Another contributor provides a specific CSS solution:
Navigate to Shopify Admin → Online Store → Themes → Actions → Edit code
Locate component-price.css
Add provided CSS code that reverses price order using flex-direction: row-reverse and applies blue color styling
Status: Partial solution offered for price reordering via CSS; discount percentage feature would require additional Liquid code implementation not yet provided.
Summarized with AI on November 3.
AI used: claude-sonnet-4-5-20250929.
(^ I would like the discounted price to be placed first, and in a red font. Also if possible I would like a little discount percentage box as seen above aswell)