PDA

View Full Version : table height



eMEraLdwPn
02-27-2004, 08:02 PM
i'm trying to get it so the three tables on this page stretch to all be the same height, which i finally achieved, but now the left and right sides stretch out and look stupid... where'd i go wrong?

http://www.peachymonkey.com/newgame/

GCT13
02-27-2004, 11:02 PM
Not quite sure what's the matter.

Chris
02-27-2004, 11:43 PM
by stretch out and look stupid, you mean vertically or horizontally?

eMEraLdwPn
02-28-2004, 12:38 AM
vertically, there should be no cellspacing or padding of any kind...

chromate
02-28-2004, 03:22 AM
you need to split the content of the left and right cells from the cells themselves (if you see what I mean). As an example, put the login box inside a CSS div. Or you could just create another table for it. Then valign it at the top...

<table cellpadding=0 cellspacing=0 border=0>
<tr>
<td valign=top>
<div>login box stuff here</div>
</td>
<td>
Main content here
</td>
<td>
<div> right content </div>
</td>
</tr>
</table>

eMEraLdwPn
02-28-2004, 07:57 PM
i got it to work inside the <div>'s, but i can't get it to stretch to all the same height. i changed the url to http://www.peachymonkey.com/newgame/index2.php

ace2000dk
04-04-2004, 10:29 PM
hi, everyone!