I want to be able to scroll through the whole page, but without the scrollbar being shown.
In Google Chrome it\'s:
::-webkit-scrollbar { display:
Just use following three lines and your problem will be solved:
#liaddshapes::-webkit-scrollbar { width: 0 !important; }
Where liaddshapes is the name of the div where scroll is coming.