|
 |
|
|
|
|
|
well, i had this problem for a long time and finally today i found the answer BY MISTAKE. and i believe MANY are in my old state, like inserting the colored bar script in head but still seeing the damn old colors.
well here was my problem:
i created the html file with dreamweaver with the help of wizard. i choosed simple html
the default is this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<body> </body> </html>
well when i was getting the scrollbar scripts and put it in the head like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style> body { scrollbar-3d-light-color: white; scrollbar-arrow-color: white; scrollbar-base-color: #3C4247; scrollbar-dark-shadow-color: white; scrollbar-face-color: #3C4247; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: white; } </style> </head>
<body> </body> </html>
still.. the scrollbars didnt change color and all the problem was from those first 2 lines of the html document:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
REMOVE these lines and you'll get colored scrollbars. try this if you had problems of not getting colored scroll bars even if you were doing the right thing.
hope this will help someone else then me only 
|
|
|
|