Streamline Theme: Change navigation menu font size

I’d like help changing the font size of Desktop View of the Navigation Menu on the website: balmere.com. I am using the Streamline theme. Thank you so much!

Hello @audreygrn

It’s GemPages support team and glad to support you today.

You can follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your theme.css file and paste the following code below:

@media only screen and (min-width: 1200px){
  .site-nav {
    font-size: 27px;
  }
}

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

Hi @audreygrn ,

Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:

@media only screen and (min-width: 769px){
.site-nav {
    font-size: 20px !important;
}
}

You can manually change the px to your liking, it will work fine.