Hi there,
Loving your theme and the updates have been great. I have just one snag, our site is having some responsive issues for screens smaller than 13′ and larger than mobile: http://www.adventureteaching.com/
The navigation menu items overlaps with the logo. Is there something I can do to to fix this? Every other type of screen works great.
Thanks!
Have you tried activating menu adjustment for both smartphones and tablets?
Enfold > Header > Mobile Menu > Activate for smartphones and tablets
This adapts to smaller devices, but overlap depends on how many menu items you have and how wide you made your logo. You might still need a minor css tweak if both were created wide. :)
Hey!
Thanks for the help cryscryb!
@jlovebomb, Try adding this to your custom CSS.
@media only screen and (min-width: 480px) and (max-width: 1200px) {
nav.main_menu {
display: none !important;
}
#advanced_menu_toggle {
display: block !important;
}
}
Cheers!
Elliott