How to make KINGMA menu template by default being visible until a min-width

Hello, how can i make the menu from KINGMA web template being visible (no icon-bar displayed) until a min-width div, when it can appears?

Hi impromedia, Thanks for you comment, you can write your support questions HERE

Hello,

I’ve simple solution with javasctipt. Please add this code in your site footer.

$(window).resize(function(){ if ( window.innerWidth > 994 ) { $("#top-menu").addClass('active'); $('#top-menu .menu-items').addClass('active'); } if ( window.innerWidth < 994 ) { $("#top-menu").removeClass('active'); $('#top-menu .menu-items').removeClass('active'); } });

I hope i will work for your site.

Let me know if you need more help about KingMa.

Thank you.