Is there a way to make scroll bars transparent? Or just not show but still provide the function of when the mouse wheel is scrolling?
And is there a way to add custom graphics to sub for the default.
Is there a way to make scroll bars transparent? Or just not show but still provide the function of when the mouse wheel is scrolling?
And is there a way to add custom graphics to sub for the default.
Not sure, exactly. Might be possible, but might not due to security.
One option: Create a thing (div, perhaps) that fills the entire screen (meaning it's 100% high/wide). That won't create scrollbars...
then place into that div what you need. Enable scrolling in the Div and hide the scrollbars for the div (I think this is possible.)
Anyway... just thoughts. Sorry it's not much help.
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
http://silverella.blogspot.com/ ran across that blog,
Notice how you can scroll when hovering over diffferent sections. Any clue how to code something like that?
Those are just standard divs, with overflow: auto; set.
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Add this in the headOr just not show but still provide the function of when the mouse wheel is scrolling?
Code:<style type="text/css"> <!-- body { scrollbar-face-color:white; scrollbar-arrow-color:white; scrollbar-track-color:white; scrollbar-shadow-color:white; scrollbar-highlight-color:white; scrollbar-3dlight-color:white; scrollbar-darkshadow-Color:white; background-attachment: fixed; } --> </style>
That will only work in IE and Konqueror, as far as I know. No other major browser supports these properties, since they are non-standard.
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Bookmarks