html table, spaces between cells

Associate
Joined
18 Oct 2002
Posts
858
Location
Cheshire
ok, new site and I got a table for the nav bar at the top, code below...

Code:
<table width="100%" border="0" class="nav_table">
  <tr>
	<td>&nbsp;</td>
	<td width="24">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="22">&nbsp;</td>
	<td>&nbsp;</td>
  </tr>
  <tr>
	<td height="29">&nbsp;</td>
	<td width="24" height="29"><img src="gfx/bgl2.gif" alt="" width="24" height="30" /></td>
	<td><a href="index.php"><img src="gfx/btn_home.gif" alt="Friends Helping Friends home" width="100" height="30" border="0" /></a></td>
	<td><a href="about.php"><img src="gfx/btn_about.gif" alt="Friends Helping Friends about" width="100" height="30" border="0" /></a></td>
	<td><a href="news.php"><img src="gfx/btn_news.gif" alt="Friends Helping Friends news" width="100" height="30" border="0" /></a></td>
	<td><img src="gfx/btn_blog.gif" alt="Friends Helping Friends blog" width="100" height="30" border="0" /></td>
	<td><a href="rules.php"><img src="gfx/btn_rules.gif" alt="Friends Helping Friends rules" width="100" height="30" border="0" /></a></td>
	<td><a href="forum/index.php"><img src="gfx/btn_forum.gif" alt="Friends Helping Friends forum" width="100" height="30" border="0" /></a></td>
	<td width="22" height="29"><img src="gfx/bgr2.gif" alt="" width="22" height="30" /></td>
	<td height="29">&nbsp;</td>
  </tr>
  <tr>
	<td>&nbsp;</td>
	<td width="24">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="100">&nbsp;</td>
	<td width="22">&nbsp;</td>
	<td>&nbsp;</td>
  </tr>
</table>

and the CSS is...

Code:
.nav_table {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

ok, I got gif buttons for each link and two ends... except theirs white space between each of the gifs...

Anyone got any ideas?
 
I did think about that, but I thaught I might make life easyer in the future if i used a table...

Stuff it, I'll sort it later...

thanks Dj_Jestar
 
Back
Top Bottom