Developing a site for one customer, I met a problem how to customize view of the scroll bar.
Customer didn’t like the view of scroll bar in Internet Explorer 7 on his Windows XP.
It is not a secret, that scroll bars are generated by browser and there is no many possibilities to influence their view using css.
Here you can read how to change scroll bar colors in Internet Explorer.
body { scrollbar-3dlight-color:#ffd700; scrollbar-arrow-color:#ff0; scrollbar-base-color:#ff6347; scrollbar-darkshadow-color:#ffa500; scrollbar-face-color:#008080; scrollbar-highlight-color:#ff69b4; scrollbar-shadow-color:#f0f }
I found a really nice solution on this site. This small jQuery plugin converts ordinary scroll bar to custom one, which looks absolutely the same on all Operating systems and browsers
Just download proper files from here. Then add the following code to
At the end of file (before
1 comment