|
Tutorials
|
|
Colour Scrollbars
This is brief guide on how one can customise the scrollbars on a site in MSIE so that it may reflect the particular style
of the chosen site.
Note:
Be sure to check the Scrollbar Generator
Css Text
To change the scrollbar colors place the following into the <head>
of your document.
<style type="text/css">
<!--
body {
scrollbar-face-color: #ffffff;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color: #ffffff;
scrollbar-3dlight-color: #ffffff;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #808080;
scrollbar-darkshadow-color: #000000;
}
-->
</style>
|
|