Hi
If you click an intermediate image in my gallery, the fullsize image does not fill the window and it has scrollbars (even though it is smaller than the screen size e.g. 850px wide)
Here is the URL: http://www.printbox.co.uk/coppermine/displayimage.php?pos=-30
Many thanks
Nick
it seems that the javascript is sizing the window the exact size of the pic, and not taking into account the borders.
Check your displayimage.php, around line 148,
if (isset($image_size['reduced'])) {
$winsizeX = $CURRENT_PIC_DATA['pwidth'] + 16;
$winsizeY = $CURRENT_PIC_DATA['pheight'] + 16;
$pic_html = "<a href=\"javascript:;\" onClick=\"MM_openBrWindow('displayimage.php?pid=$pid&fullsize=1','" . uniqid(rand()) . "','scrollbars=yes,toolbar=yes,status=yes,resizable=yes,width=$winsizeX,height=$winsizeY')\">";
capser's right: either change
Quote$winsizeX = $CURRENT_PIC_DATA['pwidth'] + 16;
$winsizeY = $CURRENT_PIC_DATA['pheight'] + 16;
or change the margin properies for the body in your stylesheet...
GauGau