Is there a way to modify scrollbars globally for vBulletin via css?
Insert a custom css element:
PHP Code:
/*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/showp...1&postcount=15
-Mika