Home Forums Basel support forum mobile search on sticky menu Reply To: mobile search on sticky menu

#378795

Hello,

Sorry for the delay.

Please add this snippet to the Theme Settings > Custom JS > On document ready:

jQuery(window).on('baselEventStarted', function() {
var body = baselThemeModule.$body;
				jQuery('.mobile-search-icon.search-button').on('click', function(e) {
					if (baselThemeModule.windowWidth > 991) {
						return;
					}

					e.preventDefault();
					if (!body.hasClass('act-mobile-menu')) {
						body.addClass('act-mobile-menu');
						jQuery('.mobile-nav .searchform').find('input[type="text"]').focus();
					}
				});
	});

We will fix that in the nearest update.

Best Regards