Hi @ehsd,
Thank you for reaching out to us. I tested the Navigation element dropdowns in IE11 and I was able to replicate the issue in the current version. I checked our issue tracker and it’s fixed and will be available in the next release.
If you need to fix this urgently then you can temporarily fix the issue by adding the following code in the Theme Options > CSS:
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.menu-item-has-children:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: none;
top: 100%;
left: 0px;
overflow: visible;
pointer-events: all;
}
.menu-item-has-children > .sub-menu {
top: 100%;
left: 0px;
overflow: visible;
}
.sub-menu > .menu-item-has-children:hover > .sub-menu {
opacity: 1;
visibility: visible;
transform: none;
top: 0%;
left: 100%;
overflow: visible;
pointer-events: all;
}
.sub-menu > .menu-item-has-children > .sub-menu {
top: 0%;
left: 100%;
overflow: visible;
}
}
Please note that it’s only a work around which may or may not work correctly, you must remove the code once the issue is fixed.
Hope this helps!