• Hello

    My theme is a child theme of Attitude theme, and I have used wp_nav_menu in my header, i.e.

    wp_nav_menu( array( ‘theme_location’ => ‘extra1-menu’ ) );

    to display this extra menu. All the items in the menu show up as planned, but the last item is “Navigation”, which goes nowhere, and cannot be seen in the Appearance, Menus page of WP backend. I presume this is something to do with Attitude’s support for mobile platforms, but I want to get rid of the word “Navigation” – which even shows up when viewed on iPad/iPhone.

    Anyone know how to do this?

Viewing 1 replies (of 1 total)
  • Thread Starter swisspenelope

    (@swisspenelope)

    Okay, I figure this out.

    Attitude does indeed make this menu item available for mobile devices. The error was in my CSS, which contained this formatting:

    #after-header-sidebar
    {
        float: left;
        width: 100%;
        background-color: 05a9c5;
        position: relative;
    }
    
    #after-header-sidebar  ul
    {
    
    }
    
    #after-header-sidebar li
    {
        display: inline;
        list-style-type: none;
    }
    
    #after-header-sidebar a
    {
        font-size: 16px;
        padding: 1.0em;
    }

    (I copied this CSS from someone else and made a few modifications to it.)

    Solution: Comment out these blocks
    #after-header-sidebar ul
    #after-header-sidebar li.

    That’s all!

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove the "Navigation" menu item from custom menu?’ is closed to new replies.