Here is the code that tells you how to make coloured
scrollbars & what each part of it does. You can
check against the picture to see the results of the
various parts of the script. THe code can either go
as it is in a Cascading Style Sheet (CSS) which is easiest
or in the HEAD section of your HTML code in STYLE tags.
| body
{ |
The body tag is where
the code goes! |
 |
| scrollbar-face-color:
#0066FF; |
Face color of the scroll bar &
arrow buttons top & bottom |
| scrollbar-arrow-color:
yellow; |
Arrow at top & bottom colour |
| scrollbar-track-color:
grey; |
The track that the scroll bar runs
along up or across the screen - its background color
is managed with this |
| scollbar-highlight-color:
magenta; |
Doesnt show so don't worry |
| scrollbar-darkshadow-color:
red; |
Outside line on right and bottom |
| scrollbar-3dlight-color:
green; |
Outside line on left of scrollbar |
| scrollbar-shadow-color:
pink; |
Right & bottom right shadow
line |
| } |
|