ghurty Posted January 11, 2010 Share Posted January 11, 2010 I am using the code: <a href="#form"><img src="images/top03.jpg" height="97" width="800"></a> to form a link to take you to: <a id="form" name="form"><td width="29%"><img src="images/test.jpg" width="298" height="23" vspace="10" /></td></a> This works in firefox and IE7. However, the link does nothing in IE8. How can I code it that it will work for everything? Thakns Quote Link to comment Share on other sites More sharing options...
soycharliente Posted January 11, 2010 Share Posted January 11, 2010 Try a proper HTML markup structure by placing the link tag INSIDE the table cell tag. It may be because of that. <td width="29%"> <a id="form" name="form"><img src="images/test.jpg" width="298" height="23" vspace="10" /></a> </td> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.