• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Web Developing question: Custom scroll bars?

Shade

Member
Is there any way, using Java or HTML, to build custom scroll bars for inline frames? I can't stand the stupid grey blocky things, would like to redo them for a site...if not, what is a way to get around this? Thanks,

-Shade
 
StileProject is doing something like that, I'm not sure hows he's accomplishing it.

WARNING: This website is probably the nastiest XXX website you'll find on the web. Pass if you don't have a strong stomach.
 
I think Cascading Style Sheets can do it using IE 5.5 only. try these properties

body {
scrollbar-face-color: #6A84AE;
scrollbar-shadow-color: #335997;
scrollbar-highlight-color: #AAAAFF;
scrollbar-3dlight-color: #335997;
scrollbar-darkshadow-color: black;
scrollbar-track-color: #335997;
scrollbar-arrow-color: #FFFFCE
}
 
Back
Top