I've always thought that habit of Mozilla having no scrollbar by default on a short page was a bad idea. Well, you could redesign everything to be 10px further to the right to begin with. How you do that depends upon wether positioning is absolute or relative in the first place, if the rest of your page is relative or just positioned by HTML flow, try:
Code:
<body>
<div style=position:relative;left:10px>
rest of page content goes here
</div></body>
then have the menu start out 10px more to the right. Another idea would be to make sure the screen has scrollbars to begin with and adjust your menu's positioning accordingly. To do that use:
Code:
body {
height:100%;
}
in your style section/stylesheet or:
HTML Code:
<body style="height:100%;">
in your body tag.
Bookmarks