Support » Theme: Expound » Menu bar Location

  • Resolved Context Canada

    (@context-canada)


    Is it possible to move the Menu Bar to the top of the page above the site title? I tried moving the code for the nav id in the child them header but that didn’t work.
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • In the header.php, you need to take this section of code

    <nav id="site-navigation" class="navigation-main" role="navigation">
    			<h1 class="menu-toggle"><?php _e( 'Menu', 'expound' ); ?></h1>
    			<div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'expound' ); ?>"><?php _e( 'Skip to content', 'expound' ); ?></a></div>
    
    			<?php wp_nav_menu( array( 'theme_location' => 'primary', 'depth' => 3 ) ); ?>
    			<?php do_action( 'expound_navigation_after' ); ?>
    		</nav><!-- #site-navigation -->

    And move it just below this section.
    <div id="page" class="hfeed site">

    Thread Starter Context Canada

    (@context-canada)

    Thanks, but something must be causing a problem because it is losing it’s style.
    http://www.contextcanada.com/video/

    It looks like you are missing the closing for the

    <div id=”page” class=”hfeed site

    Add "> to the end of that line.

    Thread Starter Context Canada

    (@context-canada)

    Thanks. I need to work on my cut and paste in the text editor!

    I can see its still a little wonky, try this

    .navigation-main {
    height: 40px;
    margin-bottom: 80px;
    }

    Then take the margin off the #page

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Menu bar Location’ is closed to new replies.