different color scroll bar

admin

Administrator
Staff member
hey there anyone know how you change the properties of a scroll bar. like the scroll bar for this website is blue how did that happen?<br />
<br />
thanks<!--content-->Your page is in html code.<br />
To work quicker and have less code in the bodypart you can use Style.<br />
The style has to be placed in the head part.<br />
In the bodypart you can call this style.<br />
<br />
A special part is the scroll bar, you do not have to cal this.<br />
Just put this part in the head:<br />
<br />
<style type="text/css"><br />
<br />
body{scrollbar-3d-light-color:#000000;<br />
scrollbar-arrow-color:#000000;<br />
scrollbar-base-color:#E09999;<br />
scrollbar-track-color: #E0E0E0;<br />
scrollbar-dark-shadow-color:#660000;<br />
scrollbar-face-color:#B99999;<br />
scrollbar-highlight-color:#E0B9B9;<br />
scrollbar-shadow-color:#BB9999;}<br />
<br />
</style><br />
<br />
Change the colorcode to your own color.<br />
<br />
More about style and CSS (Cascade Style Sheet), do a search on this forum.<br />
<br />
<br />
:rocker:<!--content-->Just remember that it only works with IE5.5, IE6.0 and recent versions of Konqueror (a Linux browser). Other browsers simply ignore the code.<!--content-->
 
Back
Top