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/
Printable View
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/
Not quite sure what's the matter.
by stretch out and look stupid, you mean vertically or horizontally?
vertically, there should be no cellspacing or padding of any kind...
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>
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
hi, everyone!