So I have made a few pages that use the following css code:
html { overflow-y: scroll; } ul.navbar { list-style-type: none; position: fixed;
overflow-y: scroll; to both body and html
html,body{overflow-y: scroll; }
Try this:
html { overflow-y: scroll; } body { position: absolute; }
Or this:
html { overflow-y: scroll; overflow-x:hidden; } body { position: absolute; }