The price and the sale price font size is smaller on sale product page
I want to make everything the same without changing the font sizes on collection page.
I want to change the price and sale price font size ONLY on the product page
The price and the sale price font size is smaller on sale product page
I want to make everything the same without changing the font sizes on collection page.
I want to change the price and sale price font size ONLY on the product page
Hey @oscaroline ,
What’s the store url?
To The Change Price Font Size On Sale Product Page
Follow these steps below:
From your Admin Page, click Online Store > Themes >Actions > Edit code
In the Asset folder, open the component-price.css
Paste the code below at the very bottom of the file.
.price--on-sale .price-item--regular {
text-decoration: line-through;
color: rgba(var(--color-foreground), 0.75);
font-size: 15px !important;
}
.price--on-sale .price__sale {
display: initial;
flex-direction: row;
flex-wrap: wrap;
color: red;
font-size: 15px !important;
}
If this answers your questions, please remember to mark it as a solution.