PDA

View Full Version : Scrollbar MUST stay...



eilsoe
May 11th, 2005, 05:58 AM
allright, I checked on this, and I just can't get the scrollbars to stay on my pages (HTML)

It works on frames with scrolling="yes" , but I want it on the current page, not in a frame, just a typical browser window.

FF uses "auto" as default apparently, even if I add the scrolling="yes" in the body tag, or through CSS, it doesn't work :m:

is there ANY way to make this act the way it should?

RabBell
May 11th, 2005, 06:29 AM
not in firefox, pretty sure you can't alter the apperance of the scrollbar in firefox at all

simplistik
May 11th, 2005, 07:55 AM
Can't do it. The only thing that could possibley solve it maybe is making a blank div or table that's 101% long forcing i to always be just lightly longer than the page will make the scrollbar stay.

eilsoe
May 11th, 2005, 07:57 AM
dang it... :-/

I made my site using a table with width percentages, and when the bar appears, the content jumps to the left... :(

chris.garrett
May 13th, 2005, 05:05 PM
You could also place a span in the markup, fill it with something like a row of colons for none CSS users and then in the CSS add the folllowing:


span#whatever{
visibility: hidden;
position: absolute;
bottom: -1px;
}

This should force a scrollbar, but in doing so may confuse users.

hl
May 13th, 2005, 09:54 PM
body{
overflow:scroll;
}

Ectheo
May 13th, 2005, 10:36 PM
not in firefox, pretty sure you can't alter the apperance of the scrollbar in firefox at all

You can, problem is, as a web designer, you can't. The user's (or in this case, FF's) style script always overrides a CSS style script. Unless you can find a way to modify the users style script, you can't do it.