Hey dude, I've got a problem here.
I want to display 2 columns, left and right. The conventional way is to have a table with 2 columns. But, if u do this way, the left column won't appear on the browser until the right column is fully loaded. So, what i do is to have 2 table, side by side.
Everything fine with IE browser but on Netscape browser - well, there is. You is, if the left table height is shorter than the right table, Netscape browser will display only up to the same level as the right table, thus cutting of some part of the left table. How do I sove this problem?
Look at this simple HTML code
<body>
<table align=left width=1%>
<tr><td width=100><p>Left Column Lot of stuff to write
about on the left column but you won't get to see it if you are using Netscape browser</td></tr>
</table>
<table align=left width=510>
<tr><td>Right Column</td></tr>
</table>
</body>
I hope you guys can help. Thanks in advance