View Full Version : Please Help Me!!!!!!!!!!


dan8
03-30-2003, 08:00 PM
PLEASE HELP!!!! I've been working on this for a long time and I can't get the space to go away between the top of the box and the rest of it.

This is my site (http://www.geocities.com/theprophetsclan/d2.htm)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Project D2</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="000000" bottommargin="0" leftmargin="0" rightmargin="0" topmargin="0" marginheight="0" marginwidth="0">
<table border=0 cellpadding=0 cellspacing=0 bgcolor=000000>
<tr>
<td colspan=4><img src="top.jpg" width="1080" height="184"></td>
</tr>
<tr>
<td rowspan=3 valign=top><img src="nav.jpg" width="271" height="608"></td>
<td valign=top colspan=3><img src="topbar.jpg" width="809" height="22"></td>
</tr>
<tr>
<td rowspan=2 valign=top><img src="leftbar.jpg" width="27" height="586"></td>
<td valign=top width=480>
<table width=100% bgcolor="000000" cellpadding=2 cellspacing=0>
<tr>
<td><font color="ffffff">Text Goes Here</font></td>
</tr>
</table>
</td>
<td rowspan=2 valign=top><img src="rightbar.jpg" width="311" height="586"></td>
</tr>
<tr>
<td colspan=2 valign=bottom><img src="bottombar.jpg" width="471" height="253"></td>
</tr>
</table>
</body>
</html>


Please Help!!!!!!!!!!

MaGiCSuN
03-31-2003, 03:05 PM
add height="333" to the <TD> tag from the "text here" part. The text are is 333px height because i took the height of the right bar image, and took off the height from the bottom bar and then i got 333 left and it fits perfectly

Love,
Mirna

MaGiCSuN
03-31-2003, 03:50 PM
i also discovered that your table code is a little messed up (when youa dd border=1 to the <table> code you will see some lines are not right). This is the code that i used to discover your problem:

<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor="#000000">

<table border=0 cellspacing=0 cellpadding=0 width="1080" height="792">
<tr><td valign="top" colspan=5><img src="http://www.geocities.com/theprophetsclan/top.jpg" width="1080" height="184"></td></tr>
<tr><td valign="top" rowspan=3 height="608"><img src="http://www.geocities.com/theprophetsclan/nav.jpg" width="271" height="608"></td>
<td valign="top" colspan=3><img src="http://www.geocities.com/theprophetsclan/topbar.jpg" width="809" height="22"></td></tr>
<tr><td valign="top" rowspan=2><img src="http://www.geocities.com/theprophetsclan/leftbar.jpg" width="27" height="586"></td>
<td valign="top" height="333">text here</td>
<td valign="top" rowspan=2><img src="http://www.geocities.com/theprophetsclan/rightbar.jpg" width="311" height="586"></td></tr>
<tr><td valign=bottom><img src="http://www.geocities.com/theprophetsclan/bottombar.jpg" width="471" height="253"></td></tr></table>

Love,
Mirna

dan8
03-31-2003, 10:51 PM
Thanks very much for the Help!!!!