View Full Version : grrful


dreamspeaker
05-07-2003, 01:49 AM
ok i have a table inside a positioning table but it won't move could someone help me make it move?here is the html

<table style="Position:absolute; top:160; left:680; width:150; a-index=0;"><div style="width:180; height:97; overflow:auto">
<table cellpadding=1 cellspacing=0><tr><td>
<form method=POST ACTION="members.php">
<table cellpadding=1 cellspacing=0>
<tr><td align=left valign=top>Alias:</td>
<td align=left><input type=text size=15 name=username style="BORDER-RIGHT: dodgerblue 1px solid; BORDER-TOP: dodgerblue 1px solid; BORDER-LEFT: dodgerblue 1px solid; BORDER-BOTTOM: dodgerblue 1px solid; FONT-SIZE: 10px; COLOR: dodgerblue; FONT-FAMILY: Verdana; BACKGROUND-COLOR: transparent"></td></tr>
<tr><td align=left valign=top>Verbal Entrance:</td>
<td align=left><input type=password size=15 name=password style="BORDER-RIGHT: dodgerblue 1px solid; BORDER-TOP: dodgerblue 1px solid; BORDER-LEFT: dodgerblue 1px solid; BORDER-BOTTOM: dodgerblue 1px solid; FONT-SIZE: 10px; COLOR: dodgerblue; FONT-FAMILY: Verdana; BACKGROUND-COLOR: transparent"></td></tr>
<table>
<tr>
<td align=left valign=bottom><input type=submit name=submit value="Enter" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
<td align=left valign=top><form action="apply.php" method="post"><input type="submit" value="Join Us" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
<td align=left valign=top>
<form action="members.php" method="post">
<input type=hidden name=username value=guest>
<input type=hidden name=password value=guest>
<input type="submit" value="Temporary" name="submit" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
</table>

Elentari
05-07-2003, 02:36 AM
Your code is really messy so I don't know what is what .....so this is kind of a bandaid for the problem rather then a cure but you can use <div style="position:absolute; top:200px; left:200px">ALL THE CONTENT YOU WANT TO POSITION GOES HERE</div> around the area (obviously change the numbers to what you want...

amicus
05-07-2003, 02:39 AM
i just checked the code and it also has errors in it. it looks like you forgot to close 3 tables and 1 div tag.

Elentari
05-07-2003, 02:48 AM
Yep...you are best to start it over and make it more ordered because there are several code errors and unnecessary codes.

alkaline39
05-07-2003, 02:50 AM
Is this what you mean?

EDIT:Whoops i was still typing the message when those last few posts were posted

<div style="width:180; height:97; overflow:auto; Position:absolute; top:160; left:680; width:150; a-index=0;">

<table cellpadding=1 cellspacing=0>
<tr>
<td>
<form method=POST ACTION="members.php">
<table cellpadding=1 cellspacing=0>
<tr>
<td align=left valign=top>Alias:</td>
<td align=left><input type=text size=15 name=username style="BORDER-RIGHT: dodgerblue 1px solid; BORDER-TOP: dodgerblue 1px solid; BORDER-LEFT: dodgerblue 1px solid; BORDER-BOTTOM: dodgerblue 1px solid; FONT-SIZE: 10px; COLOR: dodgerblue; FONT-FAMILY: Verdana; BACKGROUND-COLOR: transparent"></td>
</tr>
<tr><td align=left valign=top>Verbal Entrance:</td>
<td align=left><input type=password size=15 name=password style="BORDER-RIGHT: dodgerblue 1px solid; BORDER-TOP: dodgerblue 1px solid; BORDER-LEFT: dodgerblue 1px solid; BORDER-BOTTOM: dodgerblue 1px solid; FONT-SIZE: 10px; COLOR: dodgerblue; FONT-FAMILY: Verdana; BACKGROUND-COLOR: transparent"></td>
</tr>
</table>
<table>
<tr>
<td align=left valign=bottom><input type=submit name=submit value="Enter" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
<td align=left valign=top><form action="apply.php" method="post"><input type="submit" value="Join Us" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
<td align=left valign=top>
<form action="members.php" method="post">
<input type=hidden name=username value=guest>
<input type=hidden name=password value=guest>
<input type="submit" value="Temporary" name="submit" style="font-family: Verdana; font-size: 10px; background-color: #000000; color: dodgerblue; border-style: solid; border-color: #000000"></form></td>
</tr>
</table>
</td>
</tr>
</table>

</div>