How can I alter the visible menu according to which level I am on [closed]
First you should use the menu builder in the backend to create your menu then use the classes for the different list items to hide or display the UL nested under them. For example li ul { display: none; } li.current-menu-item ul { display: block; } li.current-menu-ancestor li ul { display: none; } li.current-menu-ancestor li.current-menu-item … Read more