Click to See Complete Forum and Search --> : how to make scroller bar in special color
ntcmlee
12-08-2003, 12:07 AM
Dear all,
In the webpage, how to write javascript to make scrollarbar of the webpage in special color, thank.
regards,
Simon
jdavia
12-08-2003, 12:59 AM
To do a search Just type the words
Color ScrollBar
in the address window of your browser. It will return a bunch of sites with Scroller Generators. Fill in the colors for the various parts of the scrollbar and copy/paste the code in between the head of your pages.
simpson97
12-08-2003, 01:56 AM
Here is an example:
[PHP]
<style type='text/css'>
<!--
body {
SCROLLBAR-FACE-COLOR: #ffecd6;
SCROLLBAR-HIGHLIGHT-COLOR: #efd7a5;
SCROLLBAR-SHADOW-COLOR: #f7dfb5;
SCROLLBAR-3DLIGHT-COLOR: #d6b68c;
SCROLLBAR-ARROW-COLOR: #ac4000;
SCROLLBAR-TRACK-COLOR: #ffe7b5;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
BACKGROUND-COLOR: #000000;
}
-->
</style>
Bob