I have created a fix for this here:
https://www.photo.gallery/imagevue/index ... emenu=true
It creates a 'minimal-height' attribute into the document so that the stage does not scale below 580px height. If the browser goes below this, a scrollbar will appear. It works with Firefox and IE7, but I'm not 100% sure it works with IE6. Perhaps someone can confirm?
To implement it, only a few changes are required in your index.php -
Change the following line:
Add the following CSS style:
#imagevue {
min-height: 580px;
_height: 580px;
}
IE7 and firefox support the "min-height" attribute, but IE6 does not. I have reason to believe using the "_height" attribute is a workaround for IE6.