July 6, 2020 at 11:37 pm
#10033685
Keymaster
Hello,
Sorry the delay to reply (the response delay can increase on weekends).
I did some tests and seems to be an iphone/ios issue. Please try the next two options below:
1) Add this code in (css/custom.css):
.scrollable, .scrollable-content {
-webkit-overflow-scrolling: touch;
}
Test again. If still not works, please try the workaround below (option 2):
2) Add the code below in (js/custom.js):
$(window).on('load', function(){
if( $('html').hasClass('iphone') || $('html').hasClass('ios') ) {
$('.header-nav-main a[href="#collapse1-1"]').trigger('click');
setTimeout(function(){
$('.header-nav-main a[href="#collapse1-1"]').trigger('click');
}, 500);
}
});
Please try that and let us know if you need further assistance.
Kind Regards,
Rodrigo.