Need help with Wordpress Nav Bar

7 replies
  • WEB DESIGN
  • |
I would like some guidance on how to remove the Wordpress Nav Bar on my blog. It is at the top of the page and I do not want it. How do I remove it. Please Help!
#bar #nav #wordpress
  • Profile picture of the author yukon
    Banned
    It's an option in your WP Admin.

    WP-Admin > Users > All Users > (Pick whatever Admin your running) > Toolbar (checkbox)
    {{ DiscussionBoard.errors[5744296].message }}
  • Profile picture of the author krytical
    I did that just now and unchecked the toolbox and saved the updated profile but the nav bar is still there.
    {{ DiscussionBoard.errors[5744421].message }}
  • Do You have a link to your blog? Are you in wordpress?
    {{ DiscussionBoard.errors[5744519].message }}
  • Profile picture of the author krytical
    I am in wordpress now on my dashboard. Not trying to advertise but the link is in my signature. it is still a blog in the making but yea, I would like to get rid of that top navigation bar. I can set up an admin pass for someone if they can fix it.
    {{ DiscussionBoard.errors[5744544].message }}
  • Profile picture of the author Istvan Horvath
    1. Why did you select a theme that you don't like... if you are NOT able to change it?

    2. Edit the header.php file of your theme and find where that portion of code is (before the blog/site title) and remove it or comment it out.
    Signature

    {{ DiscussionBoard.errors[5744613].message }}
  • Profile picture of the author krytical
    That's the thing, I do like the the theme. I'm in love with the theme so I figure I should probably ask for some help and guidance to remove it versus going through countless themes trying each one to see if there will be a nav bar or nor...in which I spent a few hours doing this yesterday. I figure If I love the theme and it fits then I should keep it and just learn how to do manage it.
    As per your instructions, I can locate that file for sure but exactly how do I comment it out or remove it? do I just paste this code somewhere:
    #nav_menu {
    display: none;
    }
    or do I delete some code before adding this and if I just paste it in, exactly where do I paste it?
    {{ DiscussionBoard.errors[5744742].message }}
  • Profile picture of the author krytical
    if(function_exists('wp_nav_menu')) {
    wp_nav_menu( 'depth=1&theme_location=menu_1&menu_id=pagemenu&ou ter-wrapper=&fallback_cb=menu_1_default');
    } else {
    menu_1_default();
    }

    function menu_1_default()
    {
    ?>
    <ul id="pagemenu">
    <li <?php if(is_home()) { ?> class="current_page_item" <?php } ?>><a href="<?php echo get_option('home'); ?>/">Home</a></li>
    <?php wp_list_pages('depth=1&sort_column=menu_order&titl e_li=' ); ?>
    </ul>
    <?php
    }

    ?>
    </div>
    </div>


    This is pretty much what I see when Im looking at the file. So, where would I paste the remove code or what should I do?
    {{ DiscussionBoard.errors[5744791].message }}

Trending Topics