Hello experts,
I need to increase the size of the price font on the product page.
BROADCAST theme.
Store: www.shapesdecor.com
Thank you,
Best
A user seeks help increasing the price font size on their product page using the Broadcast theme.
Multiple solutions provided:
Common approach: Navigate to Online Store → Theme → Edit code, then locate the CSS file (theme.css, base.css, or style.css depending on the theme)
CSS code variations suggested:
.product__price { font-size: 22px; }#MainContent .product-information .price { font-size: 20px; }.product__price { font-size: 20px; }Implementation: Paste the chosen CSS code at the bottom of the appropriate stylesheet and save
One responder included a visual result screenshot demonstrating the increased font size. The discussion remains open with no confirmation from the original poster about which solution worked.
Hello experts,
I need to increase the size of the price font on the product page.
BROADCAST theme.
Store: www.shapesdecor.com
Thank you,
Best
Hello @valeriashapes ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your theme.css file and paste the following code below:
.product__price {
font-size: 22px;
}
Thanks
Hi @valeriashapes ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.css
Step 3: Paste the below code at the bottom of the file → Save
#MainContent .product-information .price{
font-size:20px
}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Try this one.
.product__price {
font-size: 20px;
}