How To Make The Headings Smaller On Focal Theme (Product Page)

Topic summary

A user seeks help reducing heading sizes on product pages using the Focal theme. Two solutions are provided:

Solution 1 (Moeed):

  • Navigate to Online Store → Edit Code → theme.liquid
  • Add custom CSS code above the </body> tag
  • Includes a screenshot showing the implementation

Solution 2 (Made4uo-Ribe):

  • Access Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate base.css, style.css, or theme.css in the Assets folder
  • Add CSS targeting .h3.heading.h3 with font-size: 25px !important (adjustable from current 32px)
  • Apply within a media query for screens min-width 740px
  • Provides before/after result screenshot

Both responders request the original poster mark their answer as the solution if helpful. The issue appears solvable through custom CSS modifications, though the original post text displays formatting issues.

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

Hey Guys, I wanted to make the headings smaller like on the screenshot but couldn’t figure it out. It would be great if anyone could help me solving this issue.

This is my shop now:

That’s the reference:

Hey @MS-Ecom2024

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @MS-Ecom2024

Check 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:

@media only screen and (min-width: 740px){
h3.heading.h3 {
    font-size: 25px !important;
}
}

And Save.

Result:

I cant find the reference, so I can check the size. But you can always change the size you like the current size is 32px and I used 25px.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!