WordPress website – Mobile menu behavior help

The CSS isn’t the culprit here, there is an issue with your jQuery logic. Based on the provided jQuery it looks like you’re binding click events based on class names. I would suggest binding the click event that triggers the initial navigation dropdown to the hamburger icon’s ID rather than class. And then binding a … Read more

My site on mobile version is not giving responsive view

following your main page HTML elements : #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle #uniform-item #item You will see that checkbox(#item) element have a CSS left value equal to -999em So all you need is to reset that value (that won’t effect the design, but it will help fixing your out-screen layout issue) You can do it adding this … Read more