Hello @aldosolari80 ,
It seems like focus-within doesn’t work on the older edge. It is ignoring the entire CSS rule block with focus-within. If you check with the newer version of edge, it works 🙂 . We will support the older version in the next version.
For now please add following CSS code on Appearance => Customize => Additional CSS
.cwp-dynamic-header .navigation.cwp-submenu-onhover ul li.menu-item-has-children.cwp-open-submenu > .sub-menu,
.cwp-dynamic-header .navigation.cwp-submenu-onhover ul li.menu-item-has-children:focus > .sub-menu,
.cwp-dynamic-header .navigation.cwp-submenu-onhover ul li.menu-item-has-children:hover > .sub-menu {
clip: auto;
opacity: 1;
}
I believe it will fix the issue, let me know if this fixed the issue or not on your browser.
Best Regards!
Hello @codersantosh,
Thank you very much for your reply. I was reading and it is as you say, that function does not work with Edge.
To the code that I send I added
input:focus,
div:focus-within {
box-shadow: none !important;
}
and issue was resolved
Thank you very much.