• Resolved bcrrental11

    (@bcrrental11)


    I am trying to remove the black navigation bar from my blog (i am using a child theme), https://bcrrental.com/blog. So far, I have removed the search box that was within the navigation bar, but now the navigation bar is still there and a link to the “HOME” page, (by the way, I don’t have a home page set-up in the themes menu; I don’t know how its even there?) Therefore, (1) how do I remove the home page link, (2) how do I remove the navigation bar?
    Below are the codes I have copied to the child theme

    /*
    Theme Name: twentyeleven-child
    Description: Child theme to the twentyeleven theme
    Author: mel
    Template: twentyeleven

    (optional values you can add: Theme URI, Author URI, Version)
    */

    @import url(“../twentyeleven/style.css”);

    #branding #searchform {
    display: none; !important;
    }
    #nav_menu {
    display: none; !important;
    }
    #access {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; !important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • So close!
    Solution 1:
    Access is the div that contains the menu so css.

    #access {
        display: none;
    }

    Solution 2:
    Copy header.php from the parent to the child theme, this will allow you to use a menu later with no code changes, if the need arises.
    Locate the line:

    <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>

    Add ‘fallback_cb’=>” by default the main menu falls back to list pages, by setting this if there is no menu set for the Appearance > Menu > Theme Location (primary), the menu will not be returned:

    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'fallback_cb'=>'' ) ); ?>

    HTH

    David

    Thread Starter bcrrental11

    (@bcrrental11)

    Thanks so much! I can’t tell you how much that bugged me!

    Again, thanks.

    Thread Starter bcrrental11

    (@bcrrental11)

    Solution 2, is what did it!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[theme: twenty eleven] how to remove the main horizontal bar’ is closed to new replies.