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
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
oh no!! it’s supposed to be www.jazzyboo.com.au thanks for bringing it to my attention
.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:
.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