Use category menu before main menu in mobile
-
Is it possible to use the Categories menu before the Main menu in mobile?
It makes no sense for the customer to see the main menu options first, it is an ecommerce, customers want to see the category menu first.
How can I solve this?
Hello,
You can change the order of the list items, to display the categories menu first and main menu as second inside the mobile menu by using the below CSS code in global custom CSS area under theme settings :
.mobile-nav-tabs ul li:first-child {
order: 2;
}
Result: https://jmp.sh/ezE8LtB
But the active item will remain the main menu, because it is designed in this way by default. So the user has to click on categories menu to visit categories.
Best Regards.