Virus if you must use tables for your design then try to minimize the number of nested tables. It will speed up rendering times (since you have some large images already). In the code below I took your two tables and merged them into one table that works in IE6, FF 1.0.1, and NS 7.2.
Code:
<html>
<body>
<center>
<table border=0 cellpadding=0 cellspacing=0 width=98%>
<tr>
<td valign=top width=142 rowspan=2><img src=http://www.webmastershed.com/images/logo.gif></td>
<td valign=top width=95 rowspan=2><img src=http://www.webmastershed.com/images/turn1.gif></td>
<td body background=http://www.webmastershed.com/images/top1.gif height=55> </td>
<td width=3><img src=http://www.webmastershed.com/images/top2.gif></td>
<td width=200 body background=http://www.webmastershed.com/images/top3.gif> </td>
<td rowspan=4 width=2><img src=http://www.webmastershed.com/images/right2.gif></td>
</tr>
<tr>
<td rowspan=1 height=139 align=center valign=center><a href=http://www.webmastershed.com><img alt="Webmaster Shed - Website Development & Website Promotion" title="Webmaster Shed - Website Development & Website Promotion" border=0 src=http://www.webmastershed.com/images/title4.gif width=320></a></td>
<td body background=http://www.webmastershed.com/images/line.gif width=3></td>
<td rowspan=1>
<center>
<b>Sponsored Links:</b></center>
1.<br>
2.<br>
3.<br>
4.<br>
5.<br>
</td>
</tr>
<tr>
<td colspan="3" height="23" background="http://www.webmastershed.com/images/navbar.gif" style="text-align:right;"><img src="http://www.webmastershed.com/images/navbar.gif"></td>
<td height="23" style="width:3px;text-align:right;"><img src="http://www.webmastershed.com/images/div1.gif" width="3" height="23"></td>
<td background="http://www.webmastershed.com/images/navbar3.gif" height="23" width="200"> </td>
</tr>
<tr>
<td colspan="5" body background="http://www.webmastershed.com/images/navbar2.gif" height="30">
<b><a href=http://www.webmastershed.com>Home</a> :
<b><a href=http://www.webmastershed.com/clipart>Clipart</a> :
<a href=http://www.webmastershed.com/articles>Articles</a> :
<a href=http://www.webmastershed.com/newsletter>Newsletter</a></b> : <a href=http://www.webmastershed.com/contact>Contact</a> : <a href=http://www.webmastershed.com/link>Partners</a></b>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Again one of the things I can't stress enough is the great use of the [url=http://validator.w3.org]w3c code validator[/code]. By validating you will catch errors and will have properly formed code. As of right now your code doesn't have any of the specs recommended by the w3c for webdesigners to follow. You may also want to look at using css. You could really get rid of a bunch of code and table junk. Anyhow I hope I don't sound too negative, I just want anyone who wants to have a site for webmasters to have a properly coded site.
I know, I am a pain....but I wish you the best.
-dk
__________________
Did I help you? If so, be nice and throw me some Please login or register to view this content. Registration is FREE
Last edited by dk01; 03-19-2005 at 05:07 PM..
|