how to hide scroll bar sidebar but still scroll code example
Example: how to remove side scroll bar
body {
overflow-x: hidden;
}
/* MORE OPTIONS : -
overflow-x: auto;
overflow-x: scroll;
overflow-x: visible;
*/
body {
overflow-x: hidden;
}
/* MORE OPTIONS : -
overflow-x: auto;
overflow-x: scroll;
overflow-x: visible;
*/