June 8, 2018 at 19:30
#200353
Moderator
Ok Just add this code to wp-admin -> theme options -> Quick Javascript
COPY CODE
$( document ).ready(function() {
/* Close sidemenu and second menu when clicking outside only on mobile XS */
$(document).click(function (event) {
if (!$(event.target).closest('.second-menu').length && $('body').hasClass('device-xs')) {
$("body").removeClass("sidemenu-is-open second-menu-is-open");
}
});
});
Let me know
Cheers
R
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution