-
Hello @LeonidS
The code you provided above to hide navigation menu items for the guests on a specific page works but the only problem is that when the page view changes on the computer, when you zoom in the page or when you resize the browser window or when you view the page on the phone (mobile view), it automatically creates the hamburger menu icon and display the menu again. How to prevent it from behaving like that and still hide the the navigation menu even when the page view changes? Thanks
-
Then try to use this code:
<script> $( document ).ready(function() { $("#bx-menu-toolbar-1-container).remove(); }); </script>
-
Thanks a lot. i've tried it. The code works but it still behaves the same as the previous one. When you resize the page window or zoom in or change the page view to mobile view, the hamburger menu icon displays again and the menu items are back. Any other idea?
-