I'm using the following CSS to change the color of the window sroll bar to match my site's color scheme:
BODY{
scrollbar-face-color:#8080FF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#DDDDFF;
scrollbar-shadow-color:'';
scrollbar-highlight-color:'';
scrollbar-3dlight-color:'';
scrollbar-darkshadow-Color:'';
}
It works fine, except when I add in the Translational XHTML DTD. The whole site is verified by W3 for XHTML, but obviously w/o the DTD. I'm woundering if the order of the above CSS is wrong after just reading a previous post about it. Does anyone know how to get this working? I've seen a JavaScript version of this too, which also doesn't work when I add in the DTD. Thanks! Darrell Mozingo
BODY{
scrollbar-face-color:#8080FF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#DDDDFF;
scrollbar-shadow-color:'';
scrollbar-highlight-color:'';
scrollbar-3dlight-color:'';
scrollbar-darkshadow-Color:'';
}
It works fine, except when I add in the Translational XHTML DTD. The whole site is verified by W3 for XHTML, but obviously w/o the DTD. I'm woundering if the order of the above CSS is wrong after just reading a previous post about it. Does anyone know how to get this working? I've seen a JavaScript version of this too, which also doesn't work when I add in the DTD. Thanks! Darrell Mozingo