Is there any way to force a vertical page scrollbar on a page that doesn't need one in firefox?
yeh use this code put it all into your css file
html { overflow: -moz-scrollbars-vertical; }
This does it too:
html {height: 100.05%;}
Winger