I've researched and I'm really getting nowhere with this issue. I'm using a CSS style and HTML template for a website where they have a nav-bar on the left hand side. I want to add quite a lot of links to this navigation bar and so I have added an overflow: scroll; component.
Now unfortunately I have quite an ugly scrollbar in the middle of the website. I have tried changing it to "hidden" but this prevents the scrolling all together. I have tried to change the colouring of the scrollbar to match the website but I'm not really getting anywhere with that. The code is below:
aside#sidebar {
width:250px;
position: fixed;
height:100%;
overflow: scroll;
}
If I take out the "position:fixed;" the bar takes up the rest of the webpage and doesn't work properly.
Does anyone have any advice? Is there anyway to get rid of this scroll bar or colour it nicely?
Thanks for any help! Christina