• Is there any way to get rid of the drop down menu on the mobile version and instead have the traditional banner menu?

Viewing 1 replies (of 1 total)
  • Hey there sbell180,

    Hope you’re well! ??

    First, I suggest you use a child theme https://codex.www.ads-software.com/Child_Themes or use any custom css plugin if you will customize your theme.

    Add the code in your child theme’s style.css or using the plugin

    #menu-main{
    	display: block !important;
    }
    #skenav a{
    	color: #fff !important;
    }
    #skehead .top-nav-menu{
    	width: 100% !important;
    }

    & then open file /foodeez-lite/js/custom.js and comment the lines 83, 87 & 89 by putting forward slashes like this:

    if($(window).width() < options.fwidth) {
    // sktMobileRes();
    }
    $(window).resize(function() {
    if($(window).width() < options.fwidth) {
    // sktMobileRes();
    }else{
    // sktDeskRes();
    }

    and don’t forget to take backup of this file before installing update.

    Take Care,
    Gunjan Kanungo

Viewing 1 replies (of 1 total)
  • The topic ‘Get rid of "hamburger" menu on mobile version’ is closed to new replies.