PDA

View Full Version : [SOLVED]Custom Scrollbars


MikaK
12-04-2004, 07:34 PM
Is there a way to modify scrollbars globally for vBulletin via css?

Insert a custom css element:


/*CUSTOM SCROLLBARS*/
html {
scrollbar-base-color: #FF6600;
scrollbar-face-color: #CC6600;
scrollbar-track-color: #FF6633;
scrollbar-arrow-color: #FF0000;
scrollbar-highlight-color: #FFCC33;
scrollbar-3dlight-color: #FFCC66;
scrollbar-shadow-color: #FF6600;
scrollbar-darkshadow-color: #FF3300;
}

To my knowledge the above works only for IE6+. Any other browser will show the standard scrollers.

ANSWER FURTHER EXPLAINED HERE: http://www.vbulletin.com/forum/showpost.php?p=482191&postcount=15

-Mika