ok. It is a CSS problem, solved adding these also:
.main-menu ul li:hover > ul {
display: block;
}
.main-menu ul ul ul{
display: none;
}
now all menus works
works now until 3rd list menu. but the “4th list” menus dislpay one over the other (3 all together) so you cannot see all the voices of the 3 menus 🙁
modified
.main-menu ul li:hover ul {
opacity: 1;
margin-top: -47px;
display: block;
}
but doesn’t change the situation
I’ve the same issue.
Anyone managed to solve it?
Many thanks