View Full Version : Linking images within a table


darkcountes
07-19-2003, 03:35 AM
How the heck do you link images within a table? For some odd reason my thumbnails wont link to their images. :/ Any help would be GREATLY appreciated!

kittycat
07-19-2003, 04:07 AM
Could you post the code you're using or the page?

island_breeze
07-19-2003, 01:36 PM
I'm not so sure I understand what you're asking. If you mean that you'd like to be able to make links so that whatever picture you're linking to appears inside the table when you click the thumbnail, it's not possible to do. For that you'd need frames.
If not, could you post the code you're using or re-phrase the question?

MaGiCSuN
07-19-2003, 01:44 PM
you can also place an iframe into that cell of the table and link the thumbnails to that one.

<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD> <a href="largeimageurl.gif" target="NAMEIFRAMEHERE"><img src="thumbnail.gif" border="0"></a></TD><TD><iframe name="NAMEIFRAMEHERE" height="#" width="#" frameborder="0"></iframe></TD></TR></TABLE>

basic coding is this above. Fill in the bold parts to your own wishes. also make sure NAMEIFRAMEHERE is the same in the url and from the iframe, otherwise the images won't open inside the iframe.

Love,
Mirna

darkcountes
07-19-2003, 07:04 PM
Ah thank you I thought that you could link images within a table and not have to use iframes. Sorry for all the confusion :\ I'm still a novice at this kind of stuff. :(

darkcountes
07-19-2003, 07:26 PM
*Sigh* I still cannot get it right :(

Can't get thumbnails to link to my other web pages (http://www.geocities.com/shedevil_95367/Gallery.html)

MaGiCSuN
07-19-2003, 07:41 PM
you have to link the image, what you did was just viewing them.

<a href="largeimageurlhere.gif"><img src="thumbnail.gif" border=0></a>

and yet stil the iframe is easy and good for the visitors too. You don't need to make any pages, you just link to the bigger image.

Love,
Mirna

darkcountes
07-21-2003, 05:17 AM
Ok thank you, perhaps I was doing something wrong because everytime I'd try to link the images they wouldn't work :\ Oh well I'll keep trying thanks a lot :D