HTML Help
Posted: 27 October 2004 10:50 AM     [ Ignore ]  
I'm A Regular
Total Posts:  855
Joined  2004-09-27

Whats the html look like for a scrollbar? :D

I need to change the color of the scrollbar on my website but I suck at html and need to change it. 😛

Profile
 
Posted: 27 October 2004 11:54 AM   [ # 1 ]     [ Ignore ]   [ # 1 ]  
Initiation
Total Posts:  32
Joined  2004-10-13

just add this code in the <HEAD> part of your html code:

  <STYLE>
  .TA {scrollbar-3dlight-color:;
scrollbar-arrow-color:;
scrollbar-base-color:;
scrollbar-darkshadow-color:;
scrollbar-face-color:;
scrollbar-highlight-color:;
scrollbar-shadow-color:}
  </STYLE>


after the : put in the hex color (i.e. #000000) or just type the color. it needs to be a web safe color name. Best to start out with like red, blue, etc and then google for the other names.

EDIT: Here is a good Scrollbar Stylesheet generator. It basically lets you choose the colors of the options above and gives you the code for it. (note: it requires that you use IE, not firefox, mozilla, etc)

Scrollbar Styleshee Generator

Profile
 
Posted: 27 October 2004 02:33 PM   [ # 2 ]     [ Ignore ]   [ # 2 ]  
I'm A Regular
Total Posts:  855
Joined  2004-09-27

Thanks, now that I knew what to look for I edited it.

Profile