help with html tables ?

  • Thread starter Thread starter dune.heishman
  • Start date Start date
D

dune.heishman

Guest
i have this code in my html file (yes i have the all the code. the other tables work fine) and when i open the file the two middle entries appear to the right, not against the edge of the page. if i shorten the titles of the tables, it fixes it, but the titles can't be changed. how can i fix this?

<table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<tr><td align="right">1.</td><td>KA-POW! Action Series Trrailer</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="right">2.</td><td>Operation: Tiger Bomb</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="right">3.</td><td>Mirror, Mirror</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Buddhist Monkey</strong></td></tr>
<tr><td align="right">4.</td><td>Three Courses of Death</td></tr>
</table>
ok, this is my new code and it still doesn't work right:

<table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<table border="0"><tr><td colspan="2"><strong>W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="left">2.</td><td>Operation: Tiger Bomb</td></tr>
<table border="0"><tr><td colspan="2"><strong>Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="left">3.</td><td>Mirror, Mirror</td></tr>
<table border="0"><tr><td colspan="2"><strong>Buddhist Monkey</strong></td></tr>
<tr><td align="left">4.</td><td>Three Courses of Death</td></tr>
<table border="0"><tr><td colspan="2"><strong>Other:</strong></td></tr>
<tr><td align="left">1.</td><td>KA-POW! Action Series Trailer</td></tr>
</table>
 
<table border="0">
<tr>
<td colspan="2">
<strong>KA-POW! Episodes</strong>
</td>
</tr>
<tr>
<td align="left">
1.
</td>
<td>
KA-POW! Action Series Trrailer
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong>
</td>
</tr>
<tr>
<td align="left">
2.
</td>
<td align="left">
Operation: Tiger Bomb
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! Splendid's SSSSSuper Squad</strong>
</td>
</tr>
<tr>
<td align="left">
3.
</td>
<td align="left">
Mirror, Mirror
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! Buddhist Monkey</strong>
</td>
</tr>
<tr>
<td align="left">
4.
</td>
<td align="left">
Three Courses of Death
</td>
</tr>
</table>
 
remove the other <td></td>:

<table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<tr><td align="left">1.KA-POW! Action Series Trrailer</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="left">2.Operation: Tiger Bomb</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="left">3.Mirror, Mirror</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Buddhist Monkey</strong></td></tr>
<tr><td align="left">4.Three Courses of Death</td></tr>
 
Back
Top