Looking at the css classes of the menu upon opening, it seems the .force-hide
class is not removed. Moreover, upon actually opening the menu, the responding <div> is assigned classes for this animation, which should be replaced by the .open
class when finished. This also does not happen.
The issue can be temporarily fixed by adding the following code to the (custom) css:
#offcanvas-wrapper.force-hide:not(.hide)
{
display: flex !important;
overflow: auto;
width: auto !important;
}
Do note that this uses the pseudo-selector :not
, which does not work for old browsers.
-
This reply was modified 3 years, 11 months ago by marge123.
-
This reply was modified 3 years, 11 months ago by marge123.