My NavBar No Like Me
-
I am working on my first attempt at a custom theme (it’s also my first time working with wordpress, jumped right in to the deep end basically). My general problem is that my menu will not show up. the black bar that holds it shows, but the menu itslef does not and I can’t figure out why; If you look at the code below you’ll see a UL with teh class of NAV, it doesn’t display/rendered as html and i cant’ figure out why
HELP!
<header> <!--<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo("name"); ?></a></h1>--> <!--<h1><?php bloginfo("description"); //Descript access tagline ?></h1>--> <!-- navigation --> <div class="navbar-wrapper"> <!-- Wrap the .navbar in .container to center it within the absolutely positioned parent. --> <div class="container"> <div class="search"> <input type="text" name="namefield" title="Name" class="required" id="name-field" placeholder="Search"> </div> <div class="navbar navbar-inverse"> <div class="navbar-inner"> <!-- Responsive Navbar: Button for triggering responsive navbar. Include responsive CSS to utilize. --> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="brand" href="index.php">GW Portrait Studios</a> <!-- All collapsible elements within .navbar-collapse.collapse. --> <div class="nav-collapse collapse"> <ul class="nav"> <?php wp_nav_menu($mainMenu); //menu is managed by defaults set above ?> </ul> <!-- /.nav end menu container --> </div><!--/.nav-collapse --> </div><!-- /.navbar-inner --> </div><!-- /.navbar --> </div> <!-- /.container --> </div><!-- /.navbar-wrapper --> <div class="clear"><a name="top"></a></div> </header>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘My NavBar No Like Me’ is closed to new replies.