Change nav bar font, size and spacing for taste theme

Hi!

How can I change the nav bar font, size and spacing for taste theme?

website www.jazzyboo.com.au

pw: kaocho

thanks for any help

@NicoleJB ,

oh no!! it’s supposed to be www.jazzyboo.com.au thanks for bringing it to my attention

@NicoleJB ,

.header__menu-item span {
    font-size: 50px;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

@NicoleJB , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find **Asset >base.**css and paste this at the bottom of the file:
.list-menu__item *{
    font-size: 20px !important;
}

.header__submenu > li *{
        font-size: 18px !important;
}

@media (max-width: 749px){
.menu-drawer__menu *{
    font-size: 16px !important;
}

.menu-drawer__inner-submenu *{
        font-size: 15px !important;
}

}

20px = navbar font size (desktop)
18px = navbar dropdown font size (desktop)

16px = navbar font size (mobile)
15px = navbar dropdown font size (mobile)

Kind regards,
Diego