Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

From the Google Results page, the examples I saw were working only in IE and one case in Opera.

Is there any way this can be done consistently across all browsers?

Also, is there a difference between the main scrollbar of the browser (which appears across the whole page) and the scrollbar in a text area withing the page? Can I manipulate only the latter if not the former?

share|improve this question

4 Answers

up vote 3 down vote accepted

You can create your own scrollbars within a page using a combination of CSS and JavaScript. See http://stackoverflow.com/questions/780674/scroll-bar-with-images.

However, rendering of the scrollbar outside the page is up to the browser.

WebKit recently added the ability to style the default scrollbars, but this still only applies within the page.

EDIT: It seems that MooScroll has managed to 'replace' the browser's main scrollbar by telling it there's nothing to scroll and then creating their own scrollbar at the right-most side of the window. Clever!

Steve

share|improve this answer
1  
The question you linked to has been removed... Any clue why? ( stackoverflow.com/questions/780674/scroll-bar-with-images ) – brandonjp May 17 '11 at 15:39

Steve had a good answer, but allow me to continue.

In IE 5.5-7 (but I think they're getting rid of it in 8), you could style the scrollbars with some proprietary MS CSS properties. I wouldn't recommend this.

Steve mentions that the scroll bar outside of the page is up to the browser. Whilst this is true, you could fake it by setting the body element to overflow: hidden and then placing a huge container in the HTML with height: 100%; width: 100%.

I wouldn't recommend you touch the user's scroll bars. They are a well known convention, and they are quickly recognisable by the end user. They know how to use the default OS styled scroll bars, not your quick attempt at cross browser CSS/JS implementation. I think it was Steve Krug that said 'Don't make me think!'

Have you ever seen Flash sites that rolled their own scroll bars? ugh!

share|improve this answer
I agree that it's best to use the OS scrollbars most of the time. However, when used sparingly inside the page, I think custom scrollbars can look nice (see the "product slider" at the top of apple.com/mac). – Steve Harrison Apr 24 '09 at 1:22
That is pretty nice, but that is not a critical page control. If they'd used that as a scroll bar for their content, then it would be more of a problem. – alex Apr 24 '09 at 1:28

There is no cross-browser method.

share|improve this answer

Short answer no.

The appearance of the browser is out of your control unfortunately - you're only supplying the contents. It's up to the browser to decide how it wants to scroll the contents.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.