Tagged: enfold, Responsive Menu
Hi,
I’m using Enfold theme and I am having an issue with the responsive menu. At some point the standard menu is overlapping with the responsive one. You can have a look here, so you get a better idea of what I am talking about: http://awesomescreenshot.com/0601okye5a
By the way, if I make the screen narrower, everything works fine.
Any idea on how can I solve this?
Many thanks,
Martin
Hey,
You can add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
.logo.bg-logo {
width: 200px;
margin-top: 20px;
}
}
You can adjust the size of the logo.
Regards,
Ismael
Hi Ismael,
Thanks for your reply.
However, my issue is not the logo… The problemis that the main menu is not disappearing when the responsive menu is activated.
Regards,
Martin
Sure, it’s http://www.iu.qs.com
Here’s a screenshot where you can see the problem: http://awesomescreenshot.com/0601okye5a
Basically, I need the main menu to disappear when the responsive menu comes up.
Thanks,
Martin
Hi,
Please add following code to Quick CSS that is in Enfold theme options under Styling
@media only screen and (max-width: 1016px) { div.main_menu { display: none!important; } }
This will hide menu on screens smaller than 1016px.
Regards,
Yigit
It worked brilliantly.
Many thanks!
Martin