I want to make the actual price bigger in size than the “compare at price” on Dawn Theme, on both collections page and product page.
Hi @Viktor27 ,
You can use the code below to change the font size of the compare price.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Asset folder and open the base.css file
- At very end of the code, add the code below
NOTE: Change the 20px to the desired font size
.price--on-sale .price__container s.price-item.price-item--regular {
font-size: 20px;
}