dogsmart Posted February 14, 2017 Share Posted February 14, 2017 On one of my pages www.herzog-tech.ch the Navigation Categories does not pop out if i click on the +. I checked an updated all related modules. But i can't figure it out. Sorry for my bad english I'm running Prestashop 1.6.0.9 Has Anyone some ideas? Link to comment Share on other sites More sharing options...
Geo Burlibasa Posted February 14, 2017 Share Posted February 14, 2017 In file: themes/default-bootstrap/js/modules/blocktopmenu/js/blocktopmenu.js Replace this: // check resolution function responsiveMenu() { if ($(document).width() <= 767 && responsiveflagMenu == false) { menuChange('enable'); responsiveflagMenu = true; } else if ($(document).width() >= 768) { menuChange('disable'); responsiveflagMenu = false; } } with this: // check resolution function responsiveMenu() { if ($(window).width() <= 767 && responsiveflagMenu == false) { menuChange('enable'); responsiveflagMenu = true; } else if ($(window).width() >= 768) { menuChange('disable'); responsiveflagMenu = false; } } Link to comment Share on other sites More sharing options...
dogsmart Posted February 15, 2017 Author Share Posted February 15, 2017 Yeah that's it. Great, thank you. I had never find out that by myself. Link to comment Share on other sites More sharing options...
Geo Burlibasa Posted February 15, 2017 Share Posted February 15, 2017 Yeah that's it. Great, thank you. I had never find out that by myself. I am glad I could help Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now