You can try this approach: <table> <tr> <td colspan="3">Your top text goes here.</td> </tr> <tr> <td>Your left text goes here.</td> <td>Your image goes here.</td> <td>Your right text goes here.</td> </tr> <tr> <td colspan="3">Your bottom text goes here.</td> </tr> </table>
I use this which the image left and floats the text around it. <img style="FLOAT: left; MARGIN: 0pt 5px 2px 0pt" src="http://www.YOURSITEHERE.com/YOURPICTURE.jpg"/> For "http://www.YOURSITEHERE.com/YOURPICTURE.jpg" use the location and title of your picture and where your picture is hosted. Easier for me than tables. Bill
I agree. Tables can be messy and if you wrap content within two tables, the content will not display until the whole master table is loaded so it's a bit dangerous in a way.
Tell me about it. I'm seriously half-tempted to write a custom user stylesheet for Opera that gets applied only to Digital Point that uses the following style rule: table { table-layout: fixed; } Code (markup): Just so I don't have to wait for Opera to draw every single table in the source code.