Hi there,
I found that the discrepancy lies in the main stile.css, starting line 857, modified with the last update 1.75 of Feb 17 last:
#mainnav:not(.mainnav.toggled) li:hover > ul {
opacity: 1;
padding-top: 10px;
visibility: visible;
left: auto;
display: block !important;
........................
This was in 1.74
#mainnav li:hover > ul {
opacity: 1;
padding-top: 10px;
visibility: visible;
left: auto;
display: block !important;
...................
My solution was:
-
or back to 1.74
-
or adjust the main style css: (padding-top:0 and left:unset):
#mainnav:not(.mainnav.toggled) li:hover > ul {
opacity: 1;
padding-top: 0;
visibility: visible;
left: unset;
display: block !important;
........................
Adjustment in Child style.css does not work properly with or without “:not(.mainnav.toggled)”
In my case the sub-sub is on the right and I can get it ok with:
#mainnav .sub-menu .sub-menu {
right:100% !important;
padding-top: 0 !important;;
}
The question is: was not(.mainnav.toggled) necessary?
Best, Rox