How To Increase The Price Font With The Broadcast Theme On Product Page

Topic summary

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.

Summarized with AI on November 16. AI used: claude-sonnet-4-5-20250929.

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:

  1. Go to Online Store → Theme → Edit code

  2. 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

Hi @valeriashapes

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product__price {
    font-size: 20px;
}