Hello, The mobile menu is messed up after the update. All sub-menus display a few characters per line.
Example:
real
estst
e
law
etc…..
Can you please help with this?
Note I changed the setting to full page for the client for now. Please login and change back to flyout so you can see the issue.
Hey Keith,
Thanks for contacting us!
I could not reproduce the issue on my iphone however I noticed that sub menu items were left aligned. I added following code to bottom of Quick CSS field to fix it
#av-burger-menu-ul ul.sub-menu {
margin: auto;
}
Please review your website :)
Best regards,
Yigit
Hi Yigit,
The alignment looks better when the mobile menu is set for “Full Page Overlay Menu” However, when I switch back to “Sidebar Flyout Menu” I still have the issue. Can you please review it now? You should be able to see it.
Thanks,
Keith
Hi Keith,
Following code in your Quick CSS field was causing the issue
.sub-menu {
max-width:160px;
}
I changed it to following so it only applies on desktop
@media only screen and (min-width: 1371px) {
.sub-menu {
max-width:160px;
}}
Please review your website :)
Regards,
Yigit
Beautiful! Thanks Yigit!