Click here to Skip to main content
Licence 
First Posted 4 Sep 2001
Views 182,717
Bookmarked 33 times

Manipulating scrollbar colors using CSS and JavaScript

By | 4 Sep 2001 | Article
The thing about the default color of scrollbars is that they are dull and ugly. Wouldn't it be nice to change this color to better fit the overall theme of your site? See how to use Cascading Style sheets and JavaScript to do just that!

Introduction

The thing about the default color of scrollbars is that it's dull and ugly. Usually this color is gray. Wouldn't it be nice to change this color to better fit the overall theme of your site? Luckily Cascading Style sheets and JavaScript can be used to do just that!

Using CSS

In CSS, you would just add this code to the top of your page to customize the browser's scrollbar colors: The great thing about CSS is that browsers that don't understand it will just skip it, in this case, Netscape browsers.

<style>
<!--
BODY{
scrollbar-face-color:#8080FF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#DDDDFF;
scrollbar-shadow-color:'';
scrollbar-highlight-color:'';
scrollbar-3dlight-color:'';
scrollbar-darkshadow-Color:'';
}
-->
</style>

Play around with the different values!

Using JavaScript

I can use JavaScript to dynamically change the scrollbar color. This is useful when I wish to do something more fancy, like alternating the scrollbar from one color to another. The code required is:

document.body.style.scrollbarFaceColor="colorname"
document.body.style.scrollbarArrowColor="colorname"
document.body.style.scrollbarTrackColor="colorname"
document.body.style.scrollbarShadowColor="colorname"
document.body.style.scrollbarHighlightColor="colorname"
document.body.style.scrollbar3dlightColor="colorname"
document.body.style.scrollbarDarkshadowColor="colorname"

A very good demonstration of this is a script written by Svetlin Staev, which changes the scrollbar colors when you move your mouse over and out of it: http://www.dynamicdrive.com/dynamicindex11/scrolleffect.htm

I'm seeing more and more sites customize the scrollbar color to blend in with the rest of their sites. Hope you find this tutorial useful in helping you do the same!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Ada Shimar



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThe scollbar references listed in CSS and Javascript are not found. PinmemberASPCoder7777:13 12 Jul '11  
Questionis it working only for documents scroll bar ?? can i use for Panel scrollbar ?? PinmemberNirav Pate !19:21 22 Aug '08  
GeneralGood job! Pinmemberjoelperez9:27 7 Aug '08  
GeneralAbout Dreamweaver PinsussAnonymous0:47 14 May '05  
Generalin mozilla don´t work PinsussAnonymous10:25 12 Mar '05  
Generalhide horizontal scrollbar PinsussRayran7:12 6 May '04  
GeneralRe: hide horizontal scrollbar PinsussAnonymous9:41 25 May '04  
Questiontutotial? PinmemberMark Focas12:47 31 Aug '03  
AnswerRe: tutotial? PinmemberMember 43056771:09 1 Aug '08  
GeneralScrollbar width PinsussOnyxMax19:11 20 Jul '02  
Does somebody knows how to change the scrollbar width in a combo box???
GeneralRe: Scrollbar width PinsussAnonymous1:57 3 Dec '02  
GeneralCool ,Thanks... PinmemberJosh Knox19:03 20 Dec '01  
GeneralRequirements PinmemberPhilippe Lhoste4:49 11 Sep '01  
GeneralRe: Requirements PinmemberHockey11:51 19 Apr '02  
QuestionWhy? PinmemberRay Hayes1:14 5 Sep '01  
AnswerRe: Why? PinmemberAda Shimar8:51 5 Sep '01  
AnswerRe: Why? PinmemberPaul Watson20:16 11 Feb '02  
AnswerRe: Why? PinmemberDuc Truong13:43 21 Aug '02  
GeneralRe: Why? PinsussAnonymous1:53 16 Jun '04  
AnswerRe: Why? PinsussAnonymous7:04 20 Oct '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 5 Sep 2001
Article Copyright 2001 by Ada Shimar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid