Hey, I was wondering how I could change my 2 column games website into 3, because right now the search bar and everything are way to low for anyone to use them. Kool Games Thanks in advance, Tushar Dhoot
Here is your basic document structure: <table width="740" cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> <td colspan="2"></td> </tr> <tr> <td width="150" valign="top"></td> <td width="590" valign="top"></td> </tr> <tr> </tr> </tbody> </table> Code (markup): All you need to do is change colspan="2" to colspan="3" and add another cell to the main table, i.e.: another <td width="150" valign="top"></td> Of course, you may need to reduce the size of the centre column down from 590 to make up for this or increase the width of the whole page.
Thanks a million!!! Rep added! BTW, How do I increase the size of the page? I've tried, but with no luck.
If you don't mind me asking, why are you using tables for the layout? (No, I'm not a member of the "anti-table mafia"; I'm just curious as to why you're using them this way.)