View Full Version : Transparent scrollbars...


Ardnieu
09-19-2004, 05:54 PM
I know how to make a transparent scrollbar using the Chroma Filter, but I don't know how to make a transparent scrollbar using CSS methods. Is there a word, or code that I can use instead of an actual colour code? If I'm not making any sense, here's what I mean...

scrollbar - face - color : # 000000
scrollbar - face - color : (transparent, none, what?)

Sonic
09-19-2004, 09:19 PM
you could put this between your style tags
(got from xmiko.net)
body,td,p,input,textarea { background:none transparent; color:000000; font-family: verdana, arial; color: #D8C1BF; letter-spacing: 0px; font-weight: normal; font-size: 10px; cursor: crosshair;}

Ardnieu
09-19-2004, 09:47 PM
Thanks for trying to help, but it's not really what I'm looking for.

kittycat
09-19-2004, 09:50 PM
No, the only way is with that code.

Ardnieu
09-19-2004, 09:57 PM
That stinks, because the site I'm using it on doesn't allow that code. =(

Thanks for enlightening me, though. ((Kicks Neopets with a mighty rubber boot))

frickangel
09-20-2004, 12:45 AM
<html>
<head><STYLE TYPE="text/css">

BODY {

scrollbar-face-color: #fffff1;
scrollbar-shadow-color: #fffff1;
scrollbar-highlight-color: #fffff1 ;
scrollbar-3dlight-color:#fffff1 ;
scrollbar-darkshadow-color: #fffff1;
scrollbar-track-color: #fffff1;
scrollbar-arrow-color:white;
}

{
filter: chroma (color=#fffff1);
}
</style>
</head>
</html>


Is it this?

Sonic
09-20-2004, 12:58 AM
I think she wanted to do it without using Chroma filters

^^ Thanks! :)

Sonic
09-20-2004, 12:59 AM
^^ Thanks! :)