Aligning links in a table

liunx

Guest
How can I align the two home links horizontally without making another <td> box? I've tried everything I know to try and I've looked on numerous html help sites, but nothing has worked. :(<br />
<br />
<html><br />
<title></title><br />
<head><br />
<STYLE type="text/css"><br />
A:link {text-decoration: none;}<br />
A:visited {text-decoration: none;}<br />
</STYLE><br />
</head><br />
<body bgcolor="#336699"><br />
<br />
<table width="100%" border=0 cellpadding=0 cellspacing=0><br />
<tr><td bgcolor=black><br />
<br />
<table width="100%" border=0 cellpadding=2 cellspacing=1><br />
<tr><br />
<td bgcolor="#CCCCCC" width="80%"><font color="#333333"><h3>Blah blah blah...</font></td><br />
<td bgcolor="#CCCCCC" width="20%"><font color="#333333"><h5>Last updated: 07/31/03</font></td><br />
</tr><br />
<tr><br />
<br />
<td bgcolor="#333333" width="80%"><br />
<a href=http://www.htmlforums.com/archive/index.php/"1.html"><font color="#CCCCCC"><h5>home</font></a><br />
<font color="#CCCCCC">::</font><br />
<a href=http://www.htmlforums.com/archive/index.php/"2.html"><font color="#CCCCCC"><h5>home</font></a><br />
</td><br />
<br />
<td bgcolor="#333333" width="20%"><font color="#CCCCCC"><h5>Blah</font></td><br />
</tr><br />
</table><br />
<br />
</td></tr><br />
</table><br />
<br />
</body><br />
</html><!--content-->It is the <h5> tags causing the other 'home' to move onto the next line. Try specifying a font size instead, i.e. <font size="2"><!--content-->Yep, that was the problem. Thanks a lot. :D<!--content-->You can do away with all of the <font> tags and replace with one small piece of CSS coding too!<!--content-->
 
Back
Top