View Full Version : Help, again


Kat1984
02-14-2004, 09:26 PM
From this code: <div style="position: absolute; top: 70px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">LOVE</td></tr>
</table>

had made one cell, and I want about 7 to go underneathe each other (without cling to each other), changing the position, of course, but when I do, it's the opposite to what I want. This is what I did.



<div style="position: absolute; top: 5px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">PHOTOS</td></tr>
</table>


<div style="position: absolute; top: 25px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">LYRICS</td></tr>
</table>

<div style="position: absolute; top: 40px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">TOUR</td></tr>
</table>

<div style="position: absolute; top: 55px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">BIOGRAPHY</td></tr>
</table>

<div style="position: absolute; top: 70px; left: 660px;">
<table width="100" height="30" cellpadding="0" cellspacing="0" style="width:100; height:30;
border:1px dashed #000000; background-color:#CC3F3C;">

<tr><td align="center" valign="middle">
<a href="http://dsfgsgds.com" target="main1">LOVE</td></tr>
</table>

lovely
02-14-2004, 09:31 PM
I think it's not working because you never put any </div> s so the first cell never ended. :) Try putting </div> after every </table> and see if that fixes it.

Kat1984
02-14-2004, 09:36 PM
I think it's not working because you never put any </div> s so the first cell never ended. :) Try putting </div> after every </table> and see if that fixes it.

Ohhh tysm! :)