To change all pop up's top positions:
Code:
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -70px;
left: 60px; /*position where enlarged image should offset horizontally */
}
To change just one, put the style inline for the span you wish to adjust:
Code:
<a class="thumbnail" href="#thumb"><img src="media/ocean_thumb.jpg" width="100px" height="66px" border="0" />
<span style="top:-70px;"><img src="media/ocean.jpg" /><br />So real, it's unreal. Or is it?</span></a>
Bookmarks