Hi, I would like to add a custom code on only one page of my website in order to hide the scroll bar. This is the code that I am using, but obviously now it is working for every page, hiding the scroll bar everywhere:
/* width */
::-webkit-scrollbar {
width: 0px;
}
Thank you!