This topic has 2 replies, 2 voices, and was last updated 5 years, 5 months ago ago by Olga Barlow
Hello, I am looking for the code to adjust the media size of the hamburger menu, when resizing the screen our menu starts to stack at 1035px wide I would like the menu to switch to the collapsed version at this size instead of at 992px. What code can I enter into the custom css to achieve this?
Hello,
It requires a lot of CSS customization. It would be better for you to change the size of the menu items for screens smaller than 1100px
Add the following code to Theme Options > Custom CSS
@media only screen and (max-width:1100px){
.menu-wrapper > .menu-main-container .menu > li > a {
font-size: 14px;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up