View Full Version : Im think im going to go crazy!


Faerie_jane
01-24-2003, 10:14 PM
Hello again :) Another tables problem...
I'm making a new layout (even though i just finished the one im currently using :P ) Its using tables. (obviously....since im posting in the tables board!) anyways, the menu is on the left...and then the titlebar is on the top...and then the middle space is the place that im going to use div layering/iframe for all of my pages to load in (unless that isnt possible) because i normally use frames for all of my websites, but im ready for a change! But i ran into a problem. After i added my code for the menu...a gap appeared between the top and the middle section. I've tried all of the margin=0 codes that there are...and numerous other things...and i just can't get it to go away!! i uploaded the new layout so that you could see the problem--> http://faerieroses.fateback.com/newlayout/welcome12.html

Thankyou so so so very very very much...i dont understand what im doing wrong.

Jane

lilchici13
01-24-2003, 11:02 PM
try adjusting the height

Faerie_jane
01-24-2003, 11:09 PM
I have, but everytime i change the height...something else moves out of alignment

Alcy
01-24-2003, 11:12 PM
Try this:

<body topmargin="0" bottommargin="0" rightmargin="0" leftmargin="0">

<table BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="750" HEIGHT="550">

<tr>
<td WIDTH="140" HEIGHT="70">
<img NAME="notfinished0" SRC="notfinished_1x1.gif" WIDTH="140" HEIGHT="70" BORDER="0"></td>
<td WIDTH="610" HEIGHT="70">
<img NAME="notfinished1" SRC="notfinished_1x2.gif" WIDTH="610" HEIGHT="70" BORDER="0"></td>
</tr>

<tr>
<td WIDTH="140" HEIGHT="480">
<img NAME="notfinished_2x10" SRC="notfinished_2x1.gif" WIDTH="140" HEIGHT="480" BORDER="0" USEMAP="#menu_2x1">
<map NAME="menu_2x1">
<area SHAPE="rect" COORDS="9,8,124,35" HREF="http://faerieroses.fateback.com/welcome.html" TARGET="main" ALT="Home">
<area SHAPE="rect" COORDS="5,38,129,66" HREF="http://faerieroses.fateback.com/creations.html" TARGET="main" ALT="Creations">
<area SHAPE="rect" COORDS="5,69,132,99" HREF="http://faerieroses.fateback.com/about.html" ALT="About ">
<area SHAPE="rect" COORDS="7,101,130,129" HREF="http://faerieroses.fateback.com/contests.html" TARGET="main" ALT="Contests">
<area SHAPE="rect" COORDS="5,132,132,164" HREF="http://faerieroses.fateback.com/gifts.html" TARGET="main" ALT="Gifts and Awards">
<area SHAPE="rect" COORDS="6,167,131,204" HREF="http://faerieroses.fateback.com/ss.html" TARGET="main" ALT="Spotlight">
<area SHAPE="rect" COORDS="15,206,110,239">
<area SHAPE="rect" COORDS="6,243,132,281" HREF="http://www.topsitelists.com/start/faeriejane" ALT="Topsite list">
<area SHAPE="rect" COORDS="5,284,129,317" HREF="http://faerieroses.fateback.com/contact.html" TARGET="main" ALT="Contact">
<area SHAPE="rect" COORDS="5,320,130,349" HREF="http://faerieroses.fateback.com/other.html" ALT="Other">
<area SHAPE="rect" COORDS="5,353,131,384" HREF="http://faerieroses.fateback.com/links.html" TARGET="main" ALT="Links">
<area SHAPE="rect" COORDS="7,391,130,424" HREF="http://faerieroses.fateback.com/faq.html" ALT="FAQ">
<area SHAPE="rect" COORDS="6,429,129,460" HREF="http://faerieroses.fateback.com/termsofuse.html" TARGET="main" ALT="Please read my Terms of Use">
</map>
</td>

<td WIDTH="610" HEIGHT="480">
<img NAME="notfinished3" SRC="notfinished_2x2.gif" WIDTH="610" HEIGHT="480" BORDER="0">
</td>
</tr>

</table>

Your images in the second row are 480px tall, but had the columns they were in set at 476px? Since you set your table height at 550px, not 546px, the space would've appeared.

Faerie_jane
01-25-2003, 12:56 AM
Thankyou so very very much! it worked!