I want to remove only the top level scrollbar while preserving a few inside the page.
I found this but it removes all the scrollbars.
::-webkit-scrollbar
{
display:none;
}
Using overflow: hidden;
on the body's css seems to do what I want but I'm unable to scroll down the page.
To sum it up, I want to hide only the main page scrollbar while preserving the rest and being able to scroll?