vote up 3 vote down star

Hi

Is there any way to change the entire width of the horizontal scroll bar on a scrolling div (including the nudge arrows and the handle).

EDIT: I only need an IE7 solution - it's for a scrolling DIV on a touch screen terminal

Thanks

Matt

flag

Please clarify: Do you mean the whole scrollbar including the nudge arrows, or just the bit you can drag (aka the 'handle')? – philistyne Nov 3 '08 at 16:35
thanks, I've amended the question – Matt Goddard Nov 3 '08 at 16:42

4 Answers

vote up 2 vote down check

Actually, I revise my statement... in IE7, you CAN do some scaling.

<div style="zoom:5;font-size:20%;overflow-x:auto;">
  Hello World!       Hello World!       Hello World!       Hello World!       Hello World!       Hello World!       Hello World!
</div>

zoom tells IE to scale up the contents by 500%, and I've set the font-size to be 1/5 of normal (thus remain the same)... this scales the scrollbars (but it looks a bit ugly at this zoom, since the images are raster based, not vector based.

link|flag
vote up 0 vote down

You may want to roll your own scrollbar - manipulating the position of the div that is being scrolled using Javascript. I've seen it being done with big "up" and "down" arrows on touchscreen applications before. Using this approach you can style the scrolling control however you prefer to match your design.

Here's a recent example that uses jQuery's slider to control a div.

link|flag
vote up 0 vote down

There is a way, but it's IMO not possible with JS or CSS.

If you have access to the terminal in question, you can set the theme property to have a larger scrollbar. It's at Control Panels -> Display -> tab Appearance -> Advanced -> item Scrollbar -> adjust size as desired (screenshot)

link|flag
vote up 1 vote down

Can't you just change the Windows Setting to use a Windows Theme that has bigger scroll?

This is what I am talking:

alt text

link|flag
wouldn't that resize the whole window? I want the text etc. to still stay the correct size, but to increase the scroll bar width to be draqgable with a finger. – Matt Goddard Nov 3 '08 at 16:43
1  
Only the scrollbar will change. – Daok Nov 3 '08 at 16:46

Your Answer

Get an OpenID
or

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