Hey again,
Well generally hamburger menus are a common thing for mobile resolutions so I guess which I why I assumed where to click in the first place.
If you’re still looking to remove it and display the menu I guess you could simply use CSS to make it expanded in the first place and remove the toggle icon so it stays that way, something like this https://screencast.com/t/nmygW273ON.
If you want to do that please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
https://www.ads-software.com/plugins/simple-custom-css
@media screen and (max-width: 600px) {
.main-navigation ul, #top-menu-secondary:not(.none) {
display: block;
}
.menu-toggle, .main-navigation.toggled .nav-menu {
display: none;
}
#et_active_menu_item {
display: none !important;
}
}
This should make it expanded and will remove the toggle icon on smaller resolutions as in screenshot.
Hope this helps ??
Best regards,
Bojan