How can I remove the scroll bar but still be able to scroll? I tried
body {
    overflow: hidden;
}
but that removes the whole scrolling function.. Any help?
Try this
body{
   overflow: hidden !important;
   background-size: cover;
   height: 100vh;      // or height:100%;
}
