svenny1
09-11-2008, 08:01 PM
Basically i have a few mouseovers which display a larger image - http://www.therow2.com/C-3
I want the larger image to link to another page (where it says read more if possible) but all i can get is the thumbnail(smaller picture) to get linked. I tried using an image map but this just linked to the same page throughout all the larger images.
Can anybody help me link each large picture to a page?
Code:
<table border="0">
<tr valign="bottom"><td rowspan="3"><img src="images/big4.png" name="big_image" border="0" usemap="#big_imageMap" /></td>
<td width="3"></td>
<td><a href="#"><img src="images/rollover4.jpg" width=130 OnMouseOver='big_image.src="images/big4.png";' border="0"></a></td>
<td width="13"></td><td><a href="sustainability.php"><img src="images/rollover1.jpg" OnMouseOver='big_image.src="images/big1.png";' width="130"></a></td></tr>
<tr><td></td><td><a href="scientificex.php"><img src="images/rollover2.jpg" width="130" onMouseOver='big_image.src = "images/big2.png"' border="0"></a></td>
<td></td><td><a href="capability.php"><img src="images/rollover6.jpg" width=130 onMouseOver='big_image.src="images/big6.png";'></a></td></tr>
<tr valign="top"><td></td><td><a href="educationout.php"><img src="images/rollover3.jpg" width="130" onMouseOver='big_image.src="images/big3.png";'></a></td>
<td></td><td><a href="capacitybuild.php"><img src="images/rollover5.jpg" onMouseOver='big_image.src="images/big5.png";' width="130"></a></td></tr>
</table>
I want the larger image to link to another page (where it says read more if possible) but all i can get is the thumbnail(smaller picture) to get linked. I tried using an image map but this just linked to the same page throughout all the larger images.
Can anybody help me link each large picture to a page?
Code:
<table border="0">
<tr valign="bottom"><td rowspan="3"><img src="images/big4.png" name="big_image" border="0" usemap="#big_imageMap" /></td>
<td width="3"></td>
<td><a href="#"><img src="images/rollover4.jpg" width=130 OnMouseOver='big_image.src="images/big4.png";' border="0"></a></td>
<td width="13"></td><td><a href="sustainability.php"><img src="images/rollover1.jpg" OnMouseOver='big_image.src="images/big1.png";' width="130"></a></td></tr>
<tr><td></td><td><a href="scientificex.php"><img src="images/rollover2.jpg" width="130" onMouseOver='big_image.src = "images/big2.png"' border="0"></a></td>
<td></td><td><a href="capability.php"><img src="images/rollover6.jpg" width=130 onMouseOver='big_image.src="images/big6.png";'></a></td></tr>
<tr valign="top"><td></td><td><a href="educationout.php"><img src="images/rollover3.jpg" width="130" onMouseOver='big_image.src="images/big3.png";'></a></td>
<td></td><td><a href="capacitybuild.php"><img src="images/rollover5.jpg" onMouseOver='big_image.src="images/big5.png";' width="130"></a></td></tr>
</table>