Are they two choices not comparable?
I would like to have the icon menu on desktop, but at the same time have another alternative menu on mobile….
Hey,
Thanks for contacting us!
There seems to be a limitation. I will check with our devs.
In the meantime, as an alternative, you can go to Appearance > Menus, click “Screen options” on the top right side and enable “CSS Classes” – https://imgur.com/a/HfiOTpf and then give your menu items custom CSS class “desktop-menu” for menu items for your dekstop menu and “mobile-menu” for items for mobile menu and add following code to Quick CSS
@media only screen and (max-width: 767px) {
.desktop-menu { display: none; }
.mobile-menu { display: block; }
}
.mobile-menu { display: none; }
Best regards,
Yigit