This sounds like there should be a solution for it all over the internet, but I am not sure why I cannot find it. I want to disable Horizontal scrolling on mobile devices. B
html, body { overflow-x: hidden; } body { position: relative; }
The position relative is important, and i just stumbled about it. Could not make it work without it.