Hi @lola57
I’m sorry that you’re having an issue! Could you please clarify what exactly you’re experiencing with the submenus on the iPad?
I do see that you have a lot of submenus (and third-level submenus) in your navigation. I’m not sure if this is your problem, but if the issue is that the submenus are running off the right side of the screen, you could try going to Customize –> Additional CSS and adding this code:
@media all and (min-width: 768px) {
.bottom-navigation ul ul a {
width: 150px;
}
}
What this does is make the width of the submenus a little smaller, so they should extend less far across the screen. This may not completely address the problem, however, and I might also suggest adjusting the order in the navigation so that items with a lot of sub-level entries in them are a little further to the left, to avoid falling off the right side of the screen.
If I’ve misunderstood your issue and there’s something else happening with the submenus for you, please let me know and I’ll try to see if there’s something else I can do!