Scrollbar colour

  • Thread starter Thread starter Guest
  • Start date Start date
Sure. On the page that is the inline frame page put

<style type =text/css>
body {
scrollbar-arrow-color: #6C000E;
scrollbar-base-color: #1D50AC;
scrollbar-dark-shadow-color: #1D50AC;
scrollbar-track-color: #2559AF;
scrollbar-face-color: #FFCC66;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #D9D9D9;
scrollbar-3d-light-color: #FFCC66;
}

</style>
</head>

and change the colors to what you'd like
 
I think that only works in IE6 though

-------------------------------------------------------------------------
 
Yes, IE5 and up. Sorry should have mentioned that.

PC only, of course.

AND - it won't work on any page with a valid and complete doctype, even in
IE.

To make it both valid and work, you would have to change this -

body {

to this -

html,body {

since the scrollbar belongs to the <html> tag in modern browsers.
 
Back
Top