Hello @athleticsexpress
To fix the navigation menu issue on[your website]
[1]. Check your theme’s CSS for overflow: hidden
or display: none
on dropdown elements and remove or adjust them to display: block
.
[2]. If using jQuery for the menu, ensure the script is properly loading; add this snippet to functions.php
:
if (wp_is_mobile()) {
wp_enqueue_script('jquery');
}
[3]. Consider using a plugin like Max Mega Menu for advanced menu controls on both desktop and mobile.