• Love 2016, Its like 2010 on steroids!

    How do I make the MENU button the default for mobile and pc?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi lazyym

    It is style, worked in the CSS files. You can change this adding some styles.

    You will need to know a little about CSS.

    You can do this creating a Child Theme and work in a .css

    If you need a tutorial about how to do this with CSS, just ask here and we can help you too ??

    Thread Starter lazyym

    (@lazyym)

    I would love a tutorial about how to make the menu button the default all the time! Please?

    Thread Starter lazyym

    (@lazyym)

    I do have a child theme setup.

    Add this to your child theme’s style.css file:

    /* Always hide desktop menu */
    .site-header-menu {
    	display: none;
    }
    /* Always show mobile menu */
    @media screen and (min-width: 56.875em){
    	dropdown-toggle, .main-navigation ul .dropdown-toggle.toggled-on, .menu-toggle, .site-header .social-navigation, .site-footer .main-navigation {
        	display: block;
    	}
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Mobile "MENU" button all the time in twenty sixteen?’ is closed to new replies.