I have a table that is displaying a image. The image is linked to a url and I would like to add other links on top of the linked image heading elsewhere. Here is what I have: <table width="200" height="200" border="1" summary="whee" bordercolor="#000000"> <TR> <TD width="200" height="200" background="blah.jpg" align="center"> <a href="Hello.htm" style="display: block; height: 100%; ">Text Here</a> </TD> </TR> </table> Code (markup): The links are dynamic, so image maps will not work. Is this possible?
In your code, image is not linked to url, instead, link is inside your table cell, you can easily add more links like this: <table width="200" height="200" border="1" summary="whee" bordercolor="#000000"> <TR> <TD width="200" height="200" background="blah.jpg" align="center"> <a href="Hello.htm" style="display: block; height: 100%; ">Text Here</a> <a href="Kello.htm" style="display: block; height: 100%; ">New Text Here</a> <a href="Pello.htm" style="display: block; height: 100%; ">Few Text Here</a> </TD> </TR> </table> HTML: if you intend to add links on top of image, you need to do this way: <table width="200" height="200" border="1" summary="whee" bordercolor="#000000"> <TR> <td width="200" height="200" align="center"> <a href="Kello.htm" style="display: block; height: 100%; ">New Text Here</a> <a href="Pello.htm" style="display: block; height: 100%; ">Few Text Here</a> </td> </tr> <tr> <TD width="200" height="200" background="blah.jpg" align="center"> <a href="Hello.htm" style="display: block; height: 100%; ">Text Here</a> </TD> </TR> </table> HTML: hope this helps
Ahh, good point. Well, instead is it possible to add links on top of the full cell link with any scriptiing language?