• Resolved wmease

    (@wmease)


    I would like to totally remove the navigation menu from the top of the page to the footer of the page.

    Can someone please send me to reference on how to do that or reply with code and code placement here?

    Thanks again….Wade

Viewing 5 replies - 1 through 5 (of 5 total)
  • try and move the whole div #access from header.php:

    <div id="access" role="navigation">
    			  <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
    				<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
    				<?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?>
    				<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
    			</div><!-- #access -->

    to inbetween these lines in footer.php:

    </div><!-- #main -->
    
    	<div id="footer" role="contentinfo">

    untested, might need some adjustment of the styles

    Thread Starter wmease

    (@wmease)

    Worked great…

    Will have to do some minor “cosmetic work” on the header … put in a bottom border …

    Thanks…your help has been amazing…

    Quick and Accurate!!!

    Thread Starter wmease

    (@wmease)

    Another question…

    I’m sure I should place this in a child theme right?

    I’ve created a style.css child theme…

    How do I create the PHP …

    Do I do it exactly like the css ….

    place a new header.php and footer.php in the child folder?

    Do I save the entire new file for each?

    Sorry … learning newbie ….

    Thanks again….Wade

    How do I create the PHP …

    place a new header.php and footer.php in the child folder?

    Do I save the entire new file for each?

    yes

    Thread Starter wmease

    (@wmease)

    Did and it worked beautifully…

    Again…thanks so very much…

    Do you teach WP?

    Do you have a website?

    Again…amazing support ….

    Have a wonderful holiday season and prosperous new year…WM

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Using Theme 2010 — Still Haven't Found How To Move Navigation Bar to Footer’ is closed to new replies.