CSS Library: Other: Here
Custom scrollbar colors
Author: Dynamic Drive
In IE5.5+ and above, you can use CSS to customize the color of the scrollbars on the page, which includes various components of the scrollbar. The below CSS shows the relevant CSS properties for scrollbar coloring. Note that if your page uses a valid doctype that triggers a "Strict" mode in IE, the scrollbar properties need to be assigned to the "HTML" tag instead of the conventional "BODY" in order to work. Due to this divergence in implementation, an easy solution is just to assign both the HTML and BODY tags the relevant scrollbar coloring CSS properties.
Scrollbar coloring via CSS is only supported in IE.
The CSS:
Got a question or need help customizing this CSS code? Post it in the CSS Forums. If you have a comment or suggestion instead, post it in the comments section below.
Comment Pages 3 of 6 pages < 1 2 3 4 5 > Last »
I got errors in the CSS Validator.
lj
lj
I dont know if this is still active, but I think Iv'e discovered the seceret to creating transparent scrollbars! However it only seems to work in an Iframe.
I entered:
<!-- You will need an image and another page to link to in the same folder -->
<style type="text/css">
BODY {
background-image:url("pic.jpg");
/*using a pic makes it easier to see*/
FILTER: chroma (color=blue);
SCROLLBAR-BASE-COLOR: blue;
}
/* use the same style for the other page as well */
</style>
<iframe src="YOUR_PAGE_HERE.htm" allowTransparency background-color="transparent"></iframe>
I am using scroll bar properties (CSS) for Internet Explorer. It works properly in IE but not supporting in the Mozilla Firefox.
If anybody knows how to do this please reply.

