Hello, I have two queries on my dynamic page that create information that goes into two separate tables. I want to be able to place the tables side by side, but the only way I can seem to get it to do so, is just create 1 table with twice as many cells. I would like to keep them separate, as the dynamic content that governs the size of the tables will change. So, this is what i'd like it to look like: Table 1:.................................................Table 2: ______________________........________________________ |.....QUERY 1 RESULT......|.......|........QUERY 2 RESULT......| |.....QUERY 1 RESULT......|.......|........QUERY 2 RESULT......| |.....QUERY 1 RESULT......|.......|........QUERY 2 RESULT......| |.....QUERY 1 RESULT......|.......|....................................| |.....QUERY 1 RESULT......|.......|....................................| |.....QUERY 1 RESULT......|.......|....................................| |_____________________|.......|_______________________| Thanks.
Couldn't you just nest the tables into 1 large table. You would have 1 main table with 2 columns and 1 row. In each column you would start a new table. That would allow them to be side by side but create their own table. <table> <tr valign="top"> <td> <table> <tr><td>loop around this row for the 1st query</td></tr> </table> </td> <td> <table> <tr><td>loop around this row for the 2nd query</td></tr> </table> </td> </tr> </table>