1) Script Title: CSS Popup Image Viewer
2) Script URL (on DD): http://www.dynamicdrive.com/style/cs...ge-viewer/P20/
3) Describe problem: I need the image to go above the small thumbnail. Not below it. How can this be done. Thank you.
Printable View
1) Script Title: CSS Popup Image Viewer
2) Script URL (on DD): http://www.dynamicdrive.com/style/cs...ge-viewer/P20/
3) Describe problem: I need the image to go above the small thumbnail. Not below it. How can this be done. Thank you.
Untested but it looks like changing the top and left values in the CSS here should do it;Code:.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */
}
Yeah I was adjusting the top and nothing was happening. Then bingo! It happened. I've been having problems with my server updating my files. That was the problem. Thank you for confirming that I was in the right place.