Where you have:
Code:
onclick="mygallery.navigate(0); return false;"
and similar, since you have defined your gallery as:
Code:
var mygallery1=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [751, 450], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/bl . . .
You should use:
Code:
onclick="mygallery1.navigate(0); return false;"
The slide show automatically centers the images by calculating top and left margins visa vis the gallery's dimensions and the image's dimensions. To override this for the top margin, you may use overriding style employing the !important keyword in your stylesheet:
Code:
.gallerylayer img {
margin-top: 0!important;
}
Bookmarks