![]() |
|
Scollbars? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: Scollbars? (/Thread-Scollbars) |
Scollbars? - BlueCat - 05-19-2014 Anyone know how I can change the colour my sites scroll bar? RE: Scollbars? - dropzon3 - 05-19-2014 Designing for Internet Explorer <= 6? In older IE there are scroll-bar selectors in CSS: Code: scrollbar-face-color: #000000;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-track-color: #000000;
scrollbar-arrow-color: #000000;These were never standard though, and not in IE7+ afaik. For WebKit-based browsers you can use the webkit styling: https://www.webkit.org/blog/363/styling-scrollbars/ For a more general approach you'll need to get into Javascript and implementing your own scrollbar. Fortunataely there exists a jquery plugin for this(I've never used it though) http://jscrollpane.kelvinluck.com/ which might help you. |