For HOVER/SPAN CSS basics see http://meyerweb.com/eric/css/edge/popups/demo.html. Then you might be more confident about changing your settings for left:-1000px and/or left:60px. Once you take the CSS out of the box, you are not stuck with the settings.
This is your current CSS (as they were "boxed"):
Code:
.thumbnail{ position: relative; z-index: 0; }
.thumbnail:hover{ background-color: #FFFFFF; z-index: 50; }
.thumbnail span{ position: absolute; padding: 0px; left: -1000px; border: 0px; visibility: hidden; }
.thumbnail span img{ border-width: 0; padding: 0px; }
.thumbnail:hover span{ visibility: visible; top: 0; left: 60px; }
The thumbnail is position:RELATIVE so you can set the HOVER/SPAN position:POSITIVE in relation to the thumbnail. Looking at your page, I’d be inclined to set a right margin (instead of left). I used a variation of this at http://artdemo.tripod.com/illustrati...exCSS.html#top and http://chanit.com/gallery/index.htm wherein there were different margin settings for the left and right columns, unfortunately I accidentally deleted my better/original CSS file for this.
Bookmarks