Looking to make the product price on the product page & featured product on the homepage bold and larger font. Any ideas how to do this?
Hi @shanagarryceo ,
This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/component-price.css->paste below code at the bottom of the file:
span.price-item.price-item--regular {
font-weight: bold;
font-size: 24px
}
Note: you can change the value of font-size to match your store
Hope my answer will help you.
Best regards,
Victor | PageFly
2 Likes
You can remove my previous code and add this code below:
.price--on-sale .price__sale {
font-weight: bold;
font-size: 24px;
}
.product__info-container .price--on-sale .price-item--regular {
font-size: 20px;
}

1 Like
Combining the two works perfectly! Thank you.


