hiii
I would like to increase the size of main menu items just for header not footer. please check screenshot
store url - https://5a3cf5-fc.myshopify.com/
hiii
I would like to increase the size of main menu items just for header not footer. please check screenshot
store url - https://5a3cf5-fc.myshopify.com/
Hello! Please follow these steps to add this CSS code:
nav.menu-drawer__navigation ul.menu-drawer__menu.has-submenu.list-menu li > *,
nav.menu-drawer__navigation ul.menu-drawer__menu.has-submenu.list-menu li summary {
font-size: 24px;
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
Hello @ctal37
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-menu-drawer.css
add this code at the end of the file.
.list-menu__item {
font-size: 26px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @ctal37 ,
You can increase the size of header menu items just by adding a small piece of CSS code on your theme. You don’t really have to open theme code editor to do that. You can simply add this code using the theme customizer. Just click on the header on left side and scroll down until you see the custom css option.
There you just need to add the below code:
.list-menu__item{
font-size: 25px;
}
You can increase or decrease the number as per your requirements. For instance, here’s the screenshot of the custom CSS under theme customizer:
@media (max-width:767px){
.list-menu__item {
font-size: 26px !important;
}
}