Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

the RIGHT SIDE scroll bar in FIREFOX, make it permanent.

Status
Not open for further replies.

hugstable

Programmer
Feb 20, 2006
65
US
need a hack to make the right scroll in firefox permanent that works on cfm pages.... When my page length changes from very short (no scroll needed) to something that is longer and needs the scroll, my template moves slightly... any ideas?
 
Not sure if this will do it but in your outtermost table, het the height of that table to be 101%....Im just guessing here but it should work....
but their is probably a better solution

Craig
 
will try it... this is killing my application... you spend all this time to make your stylesheets and keep everyhing nice and consistent... One dynamic page and kaflewey!!!!!
 
found an easy solution...

in your page code place:
<div id="scroll"></div>

in your style sheet place:
#scroll {
/* forces firefox to put the right scroll bar on your document so the page does not jump. */
position:absolute;
top:0;
bottom:-0.1px;
width:1em;
z-index:-1;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top