Forum Moderators: open
Galleries linking to subgalleries (like "black and white") that's done, I am proud of myself ;-)
Then, each subgallery contains between 5-15 thumbnails (that I can do) and if somebody clicks on one of them the image appears in a bigger version on the top half of the page with two links (different for each image) for download/purchase.... That is where I am lost! Any ideas? Ever so thankful SY
<a href="pageWithPurchaseLinks001.html" title="Black and White Photo 001"><img src="images/bandw/001.jpg" alt="Purchase this Photo" width="300" height="200"></a>
Basically, you just wrap the <img> tags in <a> tags and then the image becomes a link to another page on your site. This is the most basic way (which seems to be what you're looking for).
insert the following code before the javascript code in your html document.
-----------------------------------------------------------------
<a href="javascript:pic1()"><img SRC="thumbnail_of_picture.jpg" width="100%" BORDER=0></a>
------------------------------------------------------------------
<script language="javascript">
function pic1(){window.open("picture.jpg","","height=500,width=375,resizable=0,scrollbars=0,status=0,directories=0,");}
---------------------------------------------------------------------