5,136,916 members and growing! (12,545 online)
Email Password   helpLost your password?
Web Development » HTML / CSS » CSS     Intermediate

Manipulating scrollbar colors using CSS and JavaScript

By Ada Shimar

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!
HTML, VC6, C++Windows, NT4, Win2K, Visual Studio, Dev

Posted: 4 Sep 2001
Updated: 4 Sep 2001
Views: 131,874
Announcements



Search    
Advanced Search
Sitemap
12 votes for this Article.
Popularity: 3.60 Rating: 3.33 out of 5
3 votes, 42.9%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
2 votes, 28.6%
4
2 votes, 28.6%
5

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



Location: United States United States

Other popular HTML / CSS articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralAbout DreamweaversussAnonymous1:47 14 May '05  
Generalin mozilla don´t worksussAnonymous11:25 12 Mar '05  
Generalhide horizontal scrollbarsussRayran8:12 6 May '04  
GeneralRe: hide horizontal scrollbarsussAnonymous10:41 25 May '04  
Generaltutotial?memberMark Focas13:47 31 Aug '03  
GeneralScrollbar widthsussOnyxMax20:11 20 Jul '02  
GeneralRe: Scrollbar widthsussAnonymous2:57 3 Dec '02  
GeneralCool ,Thanks...memberJosh Knox20:03 20 Dec '01  
GeneralRequirementsmemberPhilippe Lhoste5:49 11 Sep '01  
GeneralRe: RequirementsmemberHockey12:51 19 Apr '02  
GeneralWhy?memberRay Hayes2:14 5 Sep '01  
GeneralRe: Why?memberAda Shimar9:51 5 Sep '01  
GeneralRe: Why?memberPaul Watson21:16 11 Feb '02  
GeneralRe: Why?memberDuc Truong14:43 21 Aug '02  
GeneralRe: Why?sussAnonymous2:53 16 Jun '04  
GeneralRe: Why?sussAnonymous8:04 20 Oct '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 4 Sep 2001
Editor: Paul Watson
Copyright 2001 by Ada Shimar
Everything else Copyright © CodeProject, 1999-2008
Web19 | Advertise on the Code Project