View Full Version : Anouther question about scrollbars...


iLightFires
01-15-2005, 06:31 AM
Is there a way to hide the whole track area of a scrollbar and just keep the arrows in my iframe? Or maybe make the whole bar thinner?

wergo
01-15-2005, 01:58 PM
You create an illusion like that by matching the bar and the track colors.

Chris
01-15-2005, 02:19 PM
The following code will allow you to do that:


<style type="text/css">
<!--
body
{
scrollbar-arrow-color: #HEXCODE;
scrollbar-track-color: #HEXCODE;
scrollbar-face-color: #HEXCODE;
scrollbar-highlight-color: #HEXCODE;
scrollbar-3dlight-color: #HEXCODE;
scrollbar-darkshadow-color: #HEXCODE;
scrollbar-shadow-color: #HEXCODE;
}
-->
</style>


Hope that helps you.

Thanks,
Chris :D