How can I increase the font size in RIDE theme navigation menu?

Hi! I have the RIDE theme on my store and Im trying to increase the font size.

Anyone can help me? Is there any way to do it with custom css code?

Thankss

Hey there! you can try with:

summary.header__menu-item.list-menu__item.link.focus-inset {
    // Main menu
    font-size: 2rem;
}

a.header__menu-item.list-menu__item {
   // Menu items on dropdown
    font-size: 2rem;
}

Hi @Saltapatras

You can use the code below.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
a.header__menu-item, span.header__active-menu-item {
    font-size: 20px;
}

Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.

Hey there! I followed these directions and it worked except for the main menu item that also has a sub drop down menu. Is there a way to fix that?