QUOTE(Thomas S. England @ Jun 10 2003, 7:13 PM)
I knew help would arrive.
I think I can find/steal/deduce the code that will let me put, let's say an image and the words "Go here for more pix".
My question at this point is where within the existing code for one of my sites, made by Photoshop, for example, would I put these lines. Or does in matter?
Thomas -
If you're talking about the code level, it's a pretty much place-it-where-you-want-it kind of situation.
You put the
<a href="whatever_path_this_points_to.html"> tag and put it before or after the element that you want it to appear in between.
Say, for instance, you have a table setup in your left-hand pane like you already do and you want to put a link between two of the elements/pics.
Before you start, here's a few tips for noticing what tags mean what:
<tr> = table row
<td> = table data
<a href> = link to web address or email
<img src> = image source (the path to where it's at)
So you start your code out with:
<table border=0 cellspacing=2 cellpadding=5 width=90%>
<tr>
<td><img src="path_to_image1.jpg"></td></tr>
Now here is where we insert the link between:
<tr>
<td><a href="
http://www.apple.com" target="_blank">Apple Computer</a></td></tr>
Then we continue on with the rest of the table data:
<tr>
<td><img src="path_to_image2.jpg"></td></tr>
<tr>
<td><img src="path_to_image3.jpg"></td></tr>
and so on, until we complete the table with:
</table>
SO, that all said, here's a look at the whole thing together:
<table border=0 cellspacing=2 cellpadding=5 width=90%>
<tr>
<td><img src="path_to_image1.jpg"></td></tr>
<tr>
<td><a href="
http://www.apple.com" target="_blank">Apple Computer</a></td></tr>
<tr>
<td><img src="path_to_image2.jpg"></td></tr>
<tr>
<td><img src="path_to_image3.jpg"></td></tr>
</table>
Hope that makes it clearer than mud.
Take care, Thomas.
Chris