Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Nav Menu displayed but no menus setup…HOW? Reply To: Nav Menu displayed but no menus setup…HOW?

#148011
Senff
Participant

The theme you’re using is most likely using a default navigation menu.

If you cant find a way to turn it off in the theme’s settings/options, you can comment it out in the code (look in your theme’s header.php and find the tag <div id="mainNav" class="clearfix">) or just hide it with CSS:

#mainNav {
    display:none;
}