Hide scrollbar

Hey RM users.

Here comes a little hint if you want to disable/hide the scrollbar:

for vertical pageorder add this to your css:

.html::-webkit-scrollbar {
width: 0px;
}
.html {
scrollbar-width: none;
-ms-overflow-style: none;
}

for projects with a horizontal pageorder:

.content-scroll-wrapper::-webkit-scrollbar {
width: 0px;
}
.content-scroll-wrapper {
scrollbar-width: none;
-ms-overflow-style: none;
}

I hope someone will find this useful!
All the best

6 Likes

Thanks! This is great. The horizontal one worked also for the vertical pages. I have a website that has both scrolls and one worked for both.

1 Like