View Full Version : space between the <tr>'s


anniewayz
10-14-2004, 10:27 PM
No matter what i do, i can't seem to place the content right underneath the picture..there's huge space.
here's my code

<link rel="stylesheet" href="style.css" type="text/css">
<body rightmargin=0 leftmargin="0" topmargin="0" background="bg.png">
<TABLE background="bg2.gif" align="center" BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="688" HEIGHT="700">
<tr>
<td ROWSPAN="1" COLSPAN="1" WIDTH="688" HEIGHT="10">&nbsp; <a href="index.php">{<a href="home.php">home</a>::<a href="about.php">about</a>::<a href="join.php">rules&join</a>::<a href="codes.php">codes</a>::<a href="countries.php">fans:</a>::<a href="etc.php">etc</a>} </td>
<TR>
<TD ROWSPAN="1" COLSPAN="1" WIDTH="688" HEIGHT="300"><IMG SRC="images/rotate.php" WIDTH="688" HEIGHT="300" BORDER="0">
</TD>
</TR>
<tr>
<td ROWSPAN="1" COLSPAN="1" WIDTH="688" HEIGHT="300"><br><br>
<center>Welcome to the TFL Approved "Musicians: Female - Ruby Lin Fanlisting"! Please take a moment to look around ^_^. The goal of this site is to list all fans of singer/actress Ruby Lin as a musician.<br><br>

Recent Updates<br>
October 10, 2004: Open ^_^!
</TD></TR>
</table>
</body>


helppppppppppppp!

kittycat
10-15-2004, 02:07 AM
Put a </tr> right before you start the row with the image.
Remove the 2 <br> from the cell where you have your content text.
Then see how it looks.

anniewayz
10-15-2004, 02:57 AM
still the same :(

pb&j
10-15-2004, 06:13 AM
you have a bit of extra coding. try this...

<TABLE background="bg2.gif" align="center" BORDER="1" CELLPADDING="0" CELLSPACING="0" WIDTH="688">
<tr>
<td>&nbsp; <a href="index.php">{<a href="home.php">home</a>::<a href="about.php">about</a>::<a href="join.php">rules&join</a>::<a href="codes.php">codes</a>::<a href="countries.php">fans:</a>::<a href="etc.php">etc</a>}</td>
</tr><TR>
<TD><IMG SRC="images/rotate.php" WIDTH="688" HEIGHT="300" BORDER="0"></TD>
</TR>
<tr>
<td>
<center>Welcome to the TFL Approved "Musicians: Female - Ruby Lin Fanlisting"! Please take a moment to look around ^_^. The goal of this site is to list all fans of singer/actress Ruby Lin as a musician.<br><br>

Recent Updates<br>
October 10, 2004: Open ^_^!</TD></TR>
</table>

anniewayz
10-15-2004, 01:18 PM
oooh! much much better!!!!!!!!!! Thanks so much. Now that i look at the two codes and experimented. i think the reason for the space was that i centered the content and added a height requirement to the table. so the content was centered not only horizantally but vertically as well. I had to extend the table though because if not, the lines running down the middle were too short. The two lines running down the page are because of the table background. i fixed it by putting in your code but placing lots of "&nbsp; <br>" under the content so it extended the table and lines. ^_^ thanks.