Change font size for top level menu in Horizon

Hello,

I was wondering if anyone knows how to change the font size of the top level menu in the Horizon theme. I am using the hamburger menu style for both desktop and mobile. See screenshot below:

@fabiomalaspina add this css to the very end of styles.css file and check

.menu-drawer__menu-item-text {font-size: 18px;}

Hey @fabiomalaspina try this one by follow these step
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body>tag if this code work please do not forget to like and mark it solution

<style>
span.menu-drawer__menu-item-text.wrap-text {
    font-size: 15px !important;
}
</style>

There were several simlar topics, some has solutions, for example – Mobile Menu Font Size Adjustment – Horizon Theme - #2 by tim_1

Add below code in “Custom CSS”, either in Header section settings or in Theme settings

.menu-drawer__menu-item--parent .menu-drawer__menu-item-text {
  font-size: 16px !important;
}

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!

Thanks for all of you!