Publisher Theme - Header Font Size

Topic summary

A user seeks to reduce header font size beyond the theme’s default minimum setting.

Two solutions provided:

  1. BSS-TekLabs approach:

    • Navigate to Online Store > Themes > Actions > Edit code
    • Locate the base.css file
    • Add custom CSS at the end: .header__heading span { font-size: 12px !important; }
    • Save changes
  2. Made4uo-Ribe approach:

    • Access Admin > Online Store > Themes
    • Open Asset folder and find main.css (or base.css/style.css/theme.css)
    • Insert at bottom: .nav.header__inline-menu a { font-size: 20px; }
    • Save

Both solutions involve adding custom CSS code to override default theme settings. Screenshots demonstrate the navigation steps and expected results. The discussion remains open with no confirmation from the original poster on which solution worked.

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

How do I shrink the font size of the header? It’s already as small as it can go.

Thanks!

1 Like
  • Here is the solution for you @madixjohnson
  • Please follow these steps:

  • Then find the base.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.header__menu-item span {
    font-size: 12px !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like

Hi @madixjohnson

Check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
nav.header__inline-menu a {
    font-size: 20px;
}

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