Hi there,
you can do something like this:
@media (min-width: 769px) {
.main-navigation:not(.toggled) ul ul li.sfHover>ul,
.main-navigation:not(.toggled) ul ul li:hover>ul {
position: static;
}
}
BUT … and its a big but, if you have multiple sub-sub-menus the UX can be terrible, as the user has to mouse over an open sub menu to reach other menu items, which then causes the menu above to close.
IF you want that kind of UX then i would suggest changing the Sub Menu open from Hover to Click.
IF so – don’t add the CSS above, make that change and let me know.