In example, you have some bugs which actual size on your website are about 200% of browser height (or too much height) on your website, but still wanna looks like fit to screen.
Some solution are you can add some code on stylesheet (css), something like this :
with that one, function of scrollbar not turned off (just make it not visible/hidden)Code:html, body { height: 100%; overflow: hidden; }
Hopes this are usefull