Modifying the scroll bar color and size

R

Road Runner

I have Front page 2003 and I would like to know how I can change the color or size of the scroll bars. I have noticed this on alot of other websites

Thanks :)
 
E

E. T. Culling

Do a search in Google. colored scroll bars ... or something like that.
You'll need to import some code.
ETC
 
J

Jon

Hi,
Stefan's link should get you the code but it suggests applying the styles to
body,
body{
scrollbar-arrow-color:yellow;
etc

Instead you should apply the code to html eg
html{
scrollbar-arrow-color:yellow;
etc

Reason is if you put a doctype in IE the scrollbars won't show when they're
defined in body but theyll work if defined in html

Jon
Microsoft MVP - FP
 
Top