Don't ever use:
<meta http-equiv="imagebar" content="no" />
or the correct version:
<meta http-equiv="imagetoolbar" content="no">
as this will create a memory leak that can, under the right (or wrong, depending upon how you look at it) circumstances bring the user's computer to a crawl until every instance of the current browser session is closed.
Instead, use the galleryimg="no" attribute on any particular image that exhibits this toolbar in an obnoxious fashion. Not all images do this, they have to be big enough, be foreground images, and not have any dynamic qualities or style that prevent the toolbar in the first place.
To this end, here is where, in the lightbox.js file that the overlay image is created:
Code:
// create image
var objImage = document.createElement("img");
objImage.galleryimg = 'no';
objImage.setAttribute('id','lightboxImage');
objLink.appendChild(objImage);
Adding the part in red should take care of it, if not, use instead:
Code:
objImage.setAttribute('galleryimg','no');
Bookmarks