View Full Version : Problem with my table


jayta
10-01-2004, 06:34 AM
I have a table and it won't put the vertical dividers within the table. It is a dashed line and I don't know if that should make a difference?

Also wondering if there is a way to making the text in the table links?

Here is my coding:

<body>
<div id="header"><p><div align="center"><img style="border: 2px groove #000000;"

src="TK2.jpg" ></div>
<center><b>-- Navigation --</b></center>
<hr size=3 width=800>
<table style="border:1px dashed #000000">
<tr>
<td align=center width=155>Home</td>
<td align=center width=155>Updates</td>
<td align=center width=155>News</td>
<td align=center width=155>Biography</td>
<td align=center width=155>Music</td>
<td align=center width=155>Gallery</td>
<td align=center width=155>Links</td>
</tr>
</table>
</div>

StarryIlove
10-01-2004, 09:28 AM
To make links see code in purple. Change HOMPAGE.HTML to your page url
I can't see any other error in your code beside you might want to add the border attributes to all the TD's as well


<body>
<div id="header"><p><div align="center"><img style="border: 2px groove #000000;" src="TK2.jpg" ></div>
<center><b>-- Navigation --</b></center>
<hr size=3 width=800>
<table style="border:1px dashed #000000">
<tr>
<td align=center width=155><a href="HOMEPAGE.HTML">Home</a></td>
<td align=center width=155>Updates</td>
<td align=center width=155>News</td>
<td align=center width=155>Biography</td>
<td align=center width=155>Music</td>
<td align=center width=155>Gallery</td>
<td align=center width=155>Links</td>
</tr>
</table>
</div>