So you would like the
entire table to have a background of #D40000, with no borders/lines between the cells, correct?
If so, use this code:
HTML Code:
<table width="96%" cellspacing="0" align="center" style="background:#D40000">
<tr>
<td align="left"><a href="http://www.lightningrodder.com/forum"><span style="color:white;"><b>Lightning Rodder Forums</b></a> </td><td align="left center"><a href="http://www.delvallo.net/forum/index.php"><span style="color:white;"><b>Home</b></a> <a href="http://delvallo.net/gallery/"><span style="color:white;"><b>Gallery</b></a> </td><td align="right"><a href="http://www.nloc.net/vbforum"><span style="color:white;"><b>NLOC Forums</b></a>
</td>
</tr>
</table>
The breaks in the table are due to the lack of a cellspacing value in the <table> tag. If you set this to zero, it pushes all the cells together so there are no gaps around them.
Hope this is what you wanted.