Mobile Submenu

Hi,

I am looking at https://kelar.cleaning/ on the mobile phone however the submenu for services will only open when you click on the “Services” down arrow, is there a way to get this to open on mobile if they click on services?

I have created this Menu Item as a Custom Link with the pages added within this cheers.

Hi @tekserv,

Please try adding this custom JS under Theme Options > JS:

jQuery(document).ready(function($) {
	$(document).on('click touchend', '.x-navbar .mobile .x-nav li.menu-item-has-children a', function(event) {
		event.stopPropagation();
		$(this).find('.x-sub-toggle').trigger('click');
	});
});

Hope it helps :slight_smile:

Thanks for your help @thai that worked prefectly :smiley:

You’re most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.