scrollbars

IE8 Leaving space for Unneeded scrollbars

My page is a 3 column design with a header. It renders nicely in IE6 and IE7 (as far as i know). I use javascript to size certain elements of the page, to fit the browser window. On IE8 however, it tries to leave spaces for scrollbars, even when they are not rendered, resulting in a jumping effect when you resize (Page alternates between...

How to enable scrollbars in silverlight 3.0

Hi all, I have set my canvas width to 1500 and height to 1600 in my xaml page in silverlight 3.0. When I run the testpage I can't see scrollbars. So I am not able to scroll to view rest elements. I also need to set scrollbars for a grid. How to enable scrollbars? Please help. ...

Flex scrollbar styling issue

Hey buddy, I'm trying to style vscrollbar and hscrollbar inside a Vbox.But there's always a white square thing at the right bottom cornor which can not be styled. My CSS is: ScrollBar{ downArrowUpSkin: Embed(source="assets/images/scrollbar/arrow_down.png"); downArrowOverSkin: Embed(source="assets/images/scrollbar/arrow_down.png"); ...

textarea scrollbars overflow and hide div border

I've tried this on many browsers ( via browsershots ) and universally the scrollbars overflow and hide the green border. I don't want overflow: hidden because that clips the scrollbars. How do I get the scrollbars inside the border, instead of obscuring the border? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http:/...

Custom Mac Scrollbars With Cocoa

How would I create custom scroll bars with cocoa? ...

WinForms Web Browser custom scrollbars not appearing

I'm trying to get scrollbars working with the web browser control. However, as I'll be using it to display a message for a custom messagebox, I don't want the scrollbar to appear even if its not needed - as it seems to do by default. To circumvent this I decided to disable scrollbars on the control and instead use scrollbars on another...

Objective C examples sought

I'm trying to add scrollbars to an IKImageView. Basically at the moment, I need some examples of a program that loads an image into a view, and if the window is too small, sets up scrollbars that do the right things... Why can I not find these examples on the apple dev site? Added info: After looking at ImagekitDemo I see that eviden...

Can I use borders and horizontal scrollbars with jScrollPane?

I am designing a web page with an HTML table in which each cell is treated like a "pane". I have a or tag within each cell that uses the overflow:auto setting to allow the user to scroll through the data when it becomes too large for the cell. This works well, but the scrollbars are ugly. I want something sleeker and "less visible" ...

How can I get horizontal scrollbars at top and bottom of a div?

Since I'm pretty sure there is no native html or css way of doing this, I'm open to doing this with JavaScript. Obviously, I can get a scrollbar at the bottom of my div using overflow: auto in CSS. Is there some javascript that could "clone" the scrollbar from the bottom and place it at the top of the div? Maybe there's another way? ...

CScrollbar works on one pc but not on any others

I've written some code in c++ using a CScrollbar which scrolls a CWnd and treeview at the same time. This works perfectly find on my pc, but on other pc's in the office it has problems: it only scrolls up it allows the user to scroll when they don't need to I've tested this on Vista, XP, and Windows 7 and they all have the same resul...

Hacking the P2 theme to remove scrollbars in google chrome

I have mades some hacks to a P2 theme that work ok. Only problem is in Google chrome, I see verticle scroll bars against each page and post content area. Each page/post only shows a small amount of scroll area, regardless of how much content there is. This is pointless. I guess there's a theme function somewhere that is doing this. Anyon...

No scrollbar for DIV wider than browser

I'm doing some tests on a website using Wordpress as a CMS. In the example below the top left of the page has an "S" graphic outside of the main content area, clipped accordingly depending on the browser width. I would like to do something similar with an "L" graphic to the right in the footer. The page width is set to 960px, and I'...

How do I make a shrinkable scrollbar?

What I want: <div style="overflow:scroll;width:100%;height:50%;"> &nbsp; <div style="height:500px;width:400px;border:solid 3px red;"> </div> </div> <div style="overflow:scroll;width:100%;HEIGHT:50%;"> &nbsp; <div style="height:500px;width:400px;border:solid 3px red;"> </div> </div> Notice ...

Sticky scrollbars in Flex

I have this situation with some scrollbars in my Flex app: If I click on a scrollbar and drag off the Flex stage, the bar stays focused. As I move and click around the page outside of Flex, the bar follows me. Here's a video of the problem I've tried putting an Event.MOUSE_LEAVE handler on my app but that won't fire if I mouse down and...

Scrollbar appear / disappear event in jQuery?

Is there a simple way in jQuery to detect when scrollbars appear and disappear on a div that has overflow:auto? (Like an event? Fingers crossed...) (I'd prefer not to have to look at the height of the content of the div) Thanks! ...

Phantom horizontal scroll bars on the whole window in IE.

I'm working on a website layout you can find at dev.movingcost.com In most browsers, everything seems fine... but I'm getting a horizontal scroll bar on the window when viewing the page in IE. I'm using a fixed width of 960px with auto margins to center the content. I've even tried using "overflow-x:hidden" on the html and body tags ...

How to draw scrollbars on WPF Canvas

Hi, I am trying to create a canvas with scroll bars. Can anyone help me give some ideas on how to do this? I have already tried using grid of 1 row and 1 column but due to certain constraints I want to use canvas. Thanks in advance! ...

Mobile Safari shows no scrollbars on textarea

Hello, I get no visible scrollbars on the y axis with the following class .bodyTextBox { height: 150px; width: 225px; overflow-x: hidden; overflow-y: scroll; padding: 10px; } while every other browser works fine. Any info is very much appreciated. ...

How to know if the scrollbars has appeared in browser (jQuery)?

I need to know, whether a vertical scrollbar has appeared or not in browser window. Is it possible using jQuery or any other way? ...

Force Richtextbox scrollbars to refresh

This question is about WinForms RichTextbox. I have a RichTextbox with ScrollBars property set to Vertical. I change it's RTF contents from the code and sometimes the vertical scrollbar appears disabled - when it should be enabled. This should never happen - the scrollbar should be either enabled, or not shown at all. (I had a similar...