@aslotta itâs a large membership site. People access the site through just about every device type possible. Woo is part of the site obviously.
Well, the browser is objectively outdated if doesnât support features introduced in all major browsers between mid-2020 and early 2021.
As soon as the fix is implemented, I will let you know.
Many thanks @timmse
Hi @timmse looks like 1.7.3 doesnât address this issue. Could you tell me how it will be referenced in the changelog when it is fixed so I can spot it?
Hi @timmse I am sure you are fed up with me asking about this - honestly, so am I.
But the reality is that I am stuck on 1.6.2 and cannot update Woocommerce now because of outdated templates in 1.6.2. This situation will only get worse as time goes by.
Would it be possible for you to provide a manual fix I can apply which I can then remove once the issue is fixed natively?
Hi,
I went with the updates to fix other problems, but the issue with the menu remains.
Is there maybe a workaround as a quick fix?
@timmse please can you provide any update on this?
1.8 has a whole new menu options - will this resolve the issue?
@timmse I also find this is annoying. Any manual fix yet?
@Jonas I did check my code on your site and it works.
This code works for my site. You can check if it works for yours.
root ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden:
}
root li {
float: left;
}
root li a {
display: block;
text-align: center;
text-decoration: none;
}
root .sub-menu li {
float: none;
}
root .sub-menu a{
text-align: left;
}
root li ul {
display: none;
}
root li:hover > ul{
display: block;
z-index: 99999;
position: absolute;
}
root ul ul ul {
left: 100%;
top: 0;
}
You can check my site here with Safari 13.1.2
Hi everyone,
Just wanted to update this thread since it was still marked as âWIPâ. Weâve already addressed this topic and the broader context around it in a separate thread last year: WIP: [class*="brxe-"] max-width 100% is too intrusive - #44 by charaf.
To summarize: weâve decided not to implement a workaround or fallback for older browsers that donât support CSS features already marked as Widely Available under Baseline. This includes :where
, which has been interoperable across all major modern browsers for some time now.
Supporting the small number of devices that fall below this threshold would force regressions and architectural compromises for everyone else. Weâre focused on delivering the best possible experience for the majority of users, and that means aligning with a stable, modern CSS baseline.
If youâre still affected and need a temporary fix, youâre free to explore a custom CSS fallback, like the one shared above. Thank you for understanding!