i just setup my own website using PHP.
How can i change my grey-colored scrollbar to something like this
http://66.227.19.157/index.php
it looks flatter and have color
i just setup my own website using PHP.
How can i change my grey-colored scrollbar to something like this
http://66.227.19.157/index.php
it looks flatter and have color
css…look up scroll-bar: there are like 5 or 6 properties for the scroll bar css.
note: the CSS properties for scrollbar colour only work on IE, and are not seen to be proper(ie valid) CSS by the w3c and CSS validators.
try to add this to your <head>
<style type=“text/css”>
BODY {
scrollbar-face-color: 000000;
scrollbar-highlight-color: cccccc;
scrollbar-3dlight-color: 333333;
scrollbar-darkshadow-color: dddddd;
scrollbar-shadow-color: 000000;
scrollbar-arrow-color: 000000;
scrollbar-track-color: 75A8D3;
}
</style>
replace [ by < and add to your <head>
[ style type=“text/css”>
BODY {
scrollbar-face-color: 000000;
scrollbar-highlight-color: cccccc;
scrollbar-3dlight-color: 333333;
scrollbar-darkshadow-color: dddddd;
scrollbar-shadow-color: 000000;
scrollbar-arrow-color: 000000;
scrollbar-track-color: 75A8D3;
}
[/style>