There are no:
#mcntnr
selectors in the css for this effect. Those may or may not be affecting your results. I would be a little concerned that there may not be enough room (width:95% and the padding and the line-height) for your larger images (this could cause them to wrap). I also would worry, particularly in IE, that text-align:left might distort the positioning of things.
Generally, the larger images display in relation to the thumbnails. Think of the upper left corner of each thumbnail as 0 left and 0 top. The upper left corner of the larger image will display (if using the demo styles):
Code:
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */
}
vertically, at the top of the thumbnail (top:0) and horizontally, 60 pixels (toward the right) from the left of the thumbnail (left:60px).
Bookmarks