FYI

Revisiting how to move the Prev/Next buttons clear above image and then restore truncated bottom of image within the popup, as first raised for v1.6.2 in http://www.zen-cart.com/forum/showpo...postcount=2791, I made the following changes in stylesheet_zen_lightbox.css for v1.6.4:

Code:
#lbImage {
	position: absolute;
	left: 0;
	top: 22px; /* was 0, may need to be increased to 32px to clear border thickness, if coloured differently. */
	border: 10px solid #fff; /* if desired */
	background-repeat: no-repeat;
	padding-bottom:12px; /* added to restore bottom of image */
	}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: -32px; /* 0 */ /* Note the minus sign */
	width: 50%;
	height:auto;
	outline: none;
	}


#lbCaption, #lbNumber {
	clear:both; /* added */
	text-align:center; /* added */
	}
Cheers