• I am looking for way to disable the menu toggle for small screens.
    Is there a way to switch it off and preserve the functionality in case I need to switch it back on?

    Regards Beuvema.

Viewing 4 replies - 1 through 4 (of 4 total)
  • I need the same thing. Anyone?

    Editing this out of the header.php in my child theme did the trick for me.

    <h3 class=”menu-toggle”><?php _e( ‘Menu’, ‘twentythirteen’ ); ?></h3>

    HOWEVER, my regular menu is missing from 600px to 400px. If the window is over 600px it’s shows up, if it’s under 400px it shows up…
    Curious.

    @media all and (max-width: 660px) {

    .main-navigation ul {
    display: block !important;
    }

    #mm0 {
    display: none;
    }

    }

    This css edit to style.css brought back my regular menu under 660px.

    Thread Starter beuvema

    (@beuvema)

    This did the trick! thx for your reply phaser2222

    Regards Beuvema

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Twenty Thirteen disable menu toggle’ is closed to new replies.