Hello,
Thanks for reporting this. This appears to be a Bug. Please find the following code in the js/functions.js File inside the miscFunctions: function() Function Block:
if (!$(event.target).closest('.primary-menu.mobile-menu-off-canvas .menu-container').length) {
primaryMenu.filter('.mobile-menu-off-canvas').find('.menu-container').toggleClass('d-block', false);
$body.toggleClass("primary-menu-open", false);
}
and replace it with:
if( primaryMenu.hasClass('mobile-menu-off-canvas') ) {
if (!$(event.target).closest('.primary-menu.mobile-menu-off-canvas .menu-container').length) {
primaryMenu.filter('.mobile-menu-off-canvas').find('.menu-container').toggleClass('d-block', false);
$body.toggleClass("primary-menu-open", false);
}
}
This will definitely fix the issue. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.