How to Change Menu Font Size in Shopify (Desktop & Mobile)

1- Look for Theme.liquid:

2- Add this code above </body>:

 <style>
.header__menu-item{
    font-size: 18px !important; /* Adjust the font size for DESKTOP */
}
 
@media (max-width: 749px){
    .menu-drawer__menu-item{
    font-size: 22px !important; /* Adjust the font size for MOBILE */
}
}
</style>

Similar Posts