Viewing 2 replies - 1 through 2 (of 2 total)
  • The following code is the solution for your responsive menu issue:

    jQuery(document).ready(function(){
    jQuery(“.menu-toggle”).click(function(){jQuery(“.main-navigation .menu”).toggleClass(“show”);});
    });

    .menu.show {
    display:block;
    }

    Thread Starter AdamSocial

    (@adamsocial)

    Where would I be putting that code?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Responsive menu not showing.’ is closed to new replies.