Modifying the scroll bar color and size

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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 :)
 
Do a search in Google. colored scroll bars ... or something like that.
You'll need to import some code.
ETC
 
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
 

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

Back
Top