87dave87 Posted March 20, 2007 Share Posted March 20, 2007 Im nearing the completion of a website but have noticed that the tables under 'Linux emulators' on http://www.emulators.cc/ are slightly to the left on the 2-4 columns... compared to the tables above. How can I fix this? ??? Link to comment https://forums.phpfreaks.com/topic/43498-small-table-layout-problem/ Share on other sites More sharing options...
cmgmyr Posted March 20, 2007 Share Posted March 20, 2007 you have WAY too many tables. You should only need 1 table to do all of that. Link to comment https://forums.phpfreaks.com/topic/43498-small-table-layout-problem/#findComment-211225 Share on other sites More sharing options...
87dave87 Posted March 20, 2007 Author Share Posted March 20, 2007 If I only had one table how would they align in columns? Link to comment https://forums.phpfreaks.com/topic/43498-small-table-layout-problem/#findComment-211232 Share on other sites More sharing options...
cmgmyr Posted March 20, 2007 Share Posted March 20, 2007 Take a look at: <table width="600" border="0" cellspacing="0" cellpadding="0"> <tr> <td colspan="2" width="300"> </td> <td colspan="2" width="300"> </td> </tr> <tr> <td width="150"> </td> <td width="150"> </td> <td width="150"> </td> <td width="150"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td colspan="2"> </td> <td colspan="2"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> you just have to re-size the top columns Link to comment https://forums.phpfreaks.com/topic/43498-small-table-layout-problem/#findComment-211235 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.