Tagged: cart icon, landscape, menu, tablet, woocommerce
Hello, I applied this code:
@media only screen and (max-width: 1024px) {
#mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
nav.main_menu { display: none; }}
Works great, however it also hides the woocommerce shopping cart icon on the menu. Is there a work around to still include the icon, but hide the menu?
Thanks
Hey JasonC,
Thanks for getting in touch with us!
Please try changing this line in your code nav.main_menu { display: none; } to the following instead:
nav.main_menu .avia-menu {
display: none;
}
Best regards,
Jordan
Legend – thank you. Now displays…