View Full Version : scrollbar
Neo-Geo
November 6th, 2003, 10:37 AM
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
DDD
November 6th, 2003, 03:29 PM
css....look up scroll-bar: there are like 5 or 6 properties for the scroll bar css.
λ
November 6th, 2003, 04:44 PM
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.
OKtrust
November 7th, 2003, 01:15 PM
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>
OKtrust
November 7th, 2003, 01:17 PM
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>
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.