I've been dedicating time to a project that is almost completed. The one issue that has me stumped is the sub menus not appearing next to the "active menu."
Check out this gif demonstrating the problem
You can view the website at: www.su.fi
Previously, I encountered a problem where the sub-menu would disappear after hover. I managed to solve it by adding:
.sub-nav, .sub-nav > ul {
width: 500px !important;
box-shadow: none;
background-color: #FF008C;
display: block;
}
#main-nav .act .sub-nav {
visibility: visible !important;
opacity: 1 !important;
However, now I'm facing the issue of the menu items to the left of the active menu not showing up.
Warm regards, Thank you!
I would greatly appreciate any suggestions on how to resolve this issue.