Viewing 10 replies - 1 through 10 (of 10 total)
  • I wish someone would answer this because I would love to figure it out I have searched everywhere. I HATE the mobile menu button and I want it to go away but I can’t figure out how to get rid of it either. 🙁

    @teebee2e: As per the Forum Welcome, please post your own topic. Posting in an existing topic prevents us from being able to track issues by topic. Added to which, your problem – despite any similarity in symptoms – is likely to be completely different.

    Thread Starter dgissen

    (@dgissen)

    I think I have it:

    put this line of code in the child theme style.css:

    .menu-toggle {display: none;}

    Activate ubermenu in the plug-in menu. It appears to be working.
    If you don’t have ubermenu and you insert the above code in the style.css it will simply make the entire menu-button and menu disappear, so you will lose navigation.

    andymiller

    (@andymiller)

    I’m using Responsive Select Menu but this is what seems to work for me:

    #site-navigation h3.menu-toggle
    {
    	display: none;
    }
    csmithny06

    (@csmithny06)

    #site-navigation h3.menu-toggle
    {
    	display: none;
    }

    This worked for me. Thanks AndyMiller

    Hi dgissen – did ubermenu work with twentytwelve responsively on a mobile

    Hi…
    Way to do it is like this:
    1. If you don;t already have a copy of header.php in yoiur child theme folder, make a copy of it and stick it in there, still as header php.
    2. Once you’ve done this or if you already have a header.php in your child theme remove the following code:

    <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3>

    It’s on line 43 in the original header.php but make sure you make the changes to the version in the child theme.

    Simples – Was having the same problem.

    Ps – saw Andrew Nevins reply on your other thread on this subject. Andrew, if that’s your attitude towards people on here why are you a moderator. I would have imagined your role would be to support. Not to patronise and attempt to belittle.

    Hi this is the information I got from ubermenu.

    edit header.php

    From this

    <nav id="site-navigation" class="main-navigation" role="navigation">
    <h3 class="menu-toggle"><?php _e( 'Menu', 'twentytwelve' ); ?></h3>
    <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>"><?php _e( 'Skip to content', 'twentytwelve' ); ?></a>
    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
    </nav><!-- #site-navigation -->

    to this

    <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>

    The above code is for a child theme of twent-twelve

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘remove twentytwelve mobile menu – ubermenu’ is closed to new replies.