Hi there,
I purchased the theme this week and have been testing it on multiple devices. I found that the menu slider does not work on iOS7 browsers. This includes your own demo for DW Fixel.
Please send me the fix for this.
Thanks!
1 Answers
Hi Ray,
Sorry for the late response, to resolve this issue, please open up the main.js file in themes/dw-fixel/assets/js folder.
Find the following code (around line 77 to 81):
$('.navbtn .nav-btn').on('click touchstart', function(event){
event.preventDefault();
$(".topbtn .topshow").removeClass('icon-minus');
$('body').removeClass("top-widget-showing");
});
… and change it into this:
$('.navbtn .nav-btn').on('click touchstart', function(event){
event.preventDefault();
$(".topbtn .topshow").removeClass('icon-minus');
$('body').removeClass("top-widget-showing");
$('html').toggleClass('js-nav');
});
Hope that helps!
Thanks Kido D!
Worked like a charm!
Please login or Register to submit your answer