vote up 0 vote down star

When you go to page on my website where there is extra content, the scrollbar appears on the right, but it has a notiable shift to the left for my content. You notice this by clicking home and then hosting and back again on my site (www.ipalaces.org)

How can I account for the browser scrollbar on my pages? Can I make it so the scrollbar is always visible atleast?

My website is www.ipalaces.org, please let me know.

flag

75% accept rate
For those attempting to reproduce, you may need to make your window smaller in size. – waiwai933 Jul 29 at 22:45
Works fine for me in IE8. What browser are we talking about here? – Johannes Rössel Jul 29 at 22:46
All browsers, I am using 1360 x 768 res, 720P on my HDTV, so perhaps your resolution is higher which allows you to see full content, if thats the case try going here ipalaces.org/hosting/domains.html and then click home to notice the difference. – Brian Jul 30 at 4:42

4 Answers

vote up 1 vote down check

Make your body 101% tall... this will force the scrollbar to always show up.

body {height:101%}
link|flag
That works good, but then there is an annoying 1 pixel downward shift. Is there not a way to make all browsers show the scrollbar but have it disabled if not needed. Like -moz-scrollbars-vertical; but more universal – Brian Jul 30 at 2:33
html, body { height: 100%; margin-bottom: 1px;} Seems to have lessen the gap, but there is still an annoying gap. – Brian Jul 30 at 4:47
vote up 2 vote down

Well, it depends on the browser.

html,
body {

overflow-y: scroll;
overflow-x: scroll;
overflow: -moz-scrollbars-vertical;

}

Should force the horizontal (overflow-x) and vertical scrollbars (overflow-y) to be displayed. Though I recall that Opera sometimes fails to respect the declaration, unless it's on an element within the <body> (divs and the like).

link|flag
This leaves an ugly double scrollbar when it needs it. – Brian Jul 31 at 6:15
Define 'double scrollbar.' Two scrollbars together on each axis? – ricebowl Jul 31 at 8:33
vote up 0 vote down

Give this a try... I know its ugly but it may be the only way.

#force_scroll { 
width:1em; 
position:absolute; 
top:0; 
bottom:-0.1px; 
z-index:-1; 
}

And then in your HTML somewhere (preferably right before your ):

<div id="force_scroll"></div>
link|flag
Before my what?? This also does not work. – Brian Jul 31 at 6:06
-0.1px is not a valid measurment. Even so, using -1px or -0.1em still leaves the same effect as margin-bottom: 1px; The page can still scroll down 1 pixel. – Brian Jul 31 at 6:14
vote up 0 vote down
body {
   overflow: scroll;
}

I had the same problem with even the newest Firefox (3.5). The overflow function saved my life!

link|flag

Your Answer

Get an OpenID
or

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