Problem: In the Dawn theme, the sale price displays larger than the original price and can wrap to a new line. The goal is to make both prices the same size and align on one line.
Recent inputs:
A participant asked whether the sale price settings were fully configured, indicating uncertainty about the current setup.
Solution 1 (Theme settings, mobile-only): Add Custom CSS under Online Store > Themes > Customize > Theme settings: @media (max-width: 749px) { .price .price-item { font-size: 1.3rem !important; } }
This sets a uniform font size for price items on small screens only.
Solution 2 (Edit code, targeted to sale price): In Edit code > assets > component-price.css, append:
.price-item.price-item–sale.price-item–last { font-size: 1.3rem !important; }
This specifically reduces the sale price font size; a screenshot showed matching sizes.
Notes: CSS (Cascading Style Sheets) adjustments are the proposed fix. The first approach affects all price items on mobile; the second targets the sale price element and impacts all viewports.
Status: Suggestions provided; no confirmation from the original poster that the issue is resolved.
Summarized with AI on December 14.
AI used: gpt-5.