How To Make Navigation Header Text Bigger - Refresh Theme

Hey Folks

Anyone know how to make the heading/navigation menu text bigger?

I already added this code, but this is not changing the header/navigation text, only the menu text once you click on the dropdown.

@media screen and (min-width: 990px) { .header.header–middle-left { grid-template-columns: auto 1fr auto;

}

nav.header__inline-menu { text-align: center;

}

}

a.header__menu-item.header__menu-item.list-menu__item.link { font-size: 20px;

}

Hello @Sewade101

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (min-width: 990px){ a.header__menu-item span { font-size: 20px !important; } }