> I'm creating an html email that is emailed to people, and that portion is > working well, but the formatting isn't quite right. I currently have 4 > tables that vary in size. I would like for the tables to stack on top of > each other and have tried using <P> tags to make this happen. It almost > works, and it works sometimes, but I was wondering if there isn't some way > to make them stack like I want without having to do a lot of testing to see > how many tags have to be created given a range of records. > > Anyone got a suggestion?
Firstly, use <br> instead of <p> tags if you just want to force a new line. Secondly, if you need better positioning, nest the tables: <table> <tr><td><table>...</table></td></tr> <tr><td><table>...</table></td></tr> <tr><td><table>...</table></td></tr> <tr><td><table>...</table></td></tr> </table> _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

