Hello ,
Please use the following custom CSS to fix the sub-menu issues.
.main-navigation ul ul {
display: none;
}
.main-navigation ul li:hover > ul {
display: block;
}
Let us know if this fix the issue.
Best Regards!
Acme Themes
Yes! That worked. Thank you very much!
Glad to know your problem solved 🙂
Well, now I notice that the menus don’t function properly on my mobile device. If you click on any top menu (that has sub menus), it automatically takes you to that page instead of showing the sub menus.
Hello @clayt101,
Please add following custom CSS:
@media screen and (max-width: 1023px) {
.main-navigation ul ul {
display: block!important;
}
}
Best Regards!
Acme Themes
That works. It shows the sub menu items all of the time on a mobile device. I would prefer it if they were not always view able, but this works.
Thanks