1

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?

Ron
  • 33
  • 4

1 Answers1

1

Try this

body{
   overflow: hidden !important;
   background-size: cover;
   height: 100vh;      // or height:100%;
}