Can you change the width of a scroll bar (scrolling DIV) in IE7 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:05:25Z http://stackoverflow.com/feeds/question/259126 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7 3 Can you change the width of a scroll bar (scrolling DIV) in IE7 Matt Goddard 2008-11-03T16:14:44Z 2008-11-03T17:19:50Z <p>Hi</p> <p>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).</p> <p>EDIT: I only need an IE7 solution - it's for a scrolling DIV on a touch screen terminal</p> <p>Thanks</p> <p>Matt</p> http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7/259221#259221 1 Answer by Daok for Can you change the width of a scroll bar (scrolling DIV) in IE7 Daok 2008-11-03T16:41:59Z 2008-11-03T16:41:59Z <p>Can't you just change the Windows Setting to use a Windows Theme that has bigger scroll?</p> <p>This is what I am talking:</p> <p><img src="http://img241.imageshack.us/img241/2249/scrollbarfq8.png" alt="alt text" /></p> http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7/259270#259270 2 Answer by scunliffe for Can you change the width of a scroll bar (scrolling DIV) in IE7 scunliffe 2008-11-03T16:56:49Z 2008-11-03T16:56:49Z <p>Actually, I revise my statement... <strong>in IE7</strong>, you <strong>CAN</strong> do some scaling.</p> <pre><code>&lt;div style="zoom:5;font-size:20%;overflow-x:auto;"&gt; Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! &lt;/div&gt; </code></pre> <p>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.</p> http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7/259296#259296 0 Answer by Piskvor for Can you change the width of a scroll bar (scrolling DIV) in IE7 Piskvor 2008-11-03T17:03:46Z 2008-11-03T17:03:46Z <p>There is a way, but it's IMO not possible with JS or CSS.</p> <p>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 (<a href="http://i33.tinypic.com/idt7x1.png" rel="nofollow">screenshot</a>)</p> http://stackoverflow.com/questions/259126/can-you-change-the-width-of-a-scroll-bar-scrolling-div-in-ie7/259342#259342 0 Answer by neonski for Can you change the width of a scroll bar (scrolling DIV) in IE7 neonski 2008-11-03T17:19:50Z 2008-11-03T17:19:50Z <p>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.</p> <p>Here's a <a href="http://blog.paranoidferret.com/index.php/2008/10/24/using-jquery-slider-to-scroll-a-div/" rel="nofollow" title="recent example">recent example</a> that uses jQuery's slider to control a div.</p>