I know that there are almost the same questions related to scrollbars with some good answers, unfortunately that did not work for me. I want to hide scrollbars leaving scrolling functionality. Here is what I have:
<div class="sidebar">
<div id="status"> </div>
<..li items etc >
</div><!-- END SIDEBAR -->
And my CSS,
.sidebar {
overflow: hidden;
height: 90%;
}
.sidebar .#status {
overflow:scroll;
}