Sroll Bars

I'm trying to make a scroll bar that uses images, an up button a down button ect. But I don't know where to start. I'd prefer to do it in css but if it's only possible in js then I'll setle for that.You will need to use both JavaScript and CSS, and it's quite a complex thing to do. In JS, window.scrollBy() (<!-- m --><a class="postlink" href="http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/window.html#1203503">http://devedge.netscape.com/library/man ... ml#1203503</a><!-- m -->) and window.scrollTo() (<!-- m --><a class="postlink" href="http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/window.html#1203546">http://devedge.netscape.com/library/man ... ml#1203546</a><!-- m -->) might be useful.

However, I would advise against doing this on a "proper" website, for usability reasons. Standard scrollbars are familiar to users and work perfectly fine, so replacing them just causes problems for users.

AdamThanks, I'm not planning to make some obscure scrollbar that only visitors to the site who specilize in rocket science will understand, I just want it to fit with the design, it doesn't really matter what the scrollbar for the whole page looks like but this is for a <div> bang in the middle of a page so it is important that it fits.
 
Back
Top