Scrollbar colour

D

David Berry

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
 
W

Windsun

I think that only works in IE6 though

-------------------------------------------------------------------------
 
M

Murray

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top