Reply To: Mobile site doesnt look right

Homepage Community Forums Epik Theme Support Mobile site doesnt look right Reply To: Mobile site doesnt look right

#12270
nickmustafa
Customer

    Hi – I just checked and this folder and file does exist in the theme.

    The code in the file name is slightly different however and not as detailed. see below the exact code from the file

    jQuery(function( $ ){

    // Enable responsive menu icon for mobile
    $(“header .genesis-nav-menu”).addClass(“responsive-menu”).before(‘<div id=”responsive-menu-icon”></div>’);

    $(“#responsive-menu-icon”).click(function(){
    $(“header .genesis-nav-menu”).slideToggle();
    });

    $(window).resize(function(){
    if(window.innerWidth > 768) {
    $(“header .genesis-nav-menu”).removeAttr(“style”);
    }
    });

    });