My original problem with my submenus was that they were not visible on hover. I found the following code in the forum, which fixed visibility issue.
.x-navbar .menu-item:hover .sub-menu{
display:block !important;
}
This code caused my submenus to continue to be visible even when I click for the submenu to collapse. And on hover the submenus often cover the menus below on mobile. Is there a solution for this issue?
Thanks