hi all
It's been a long time since i've done actual html code. and i seem to have forgotten how to make <td>'s different widths. for example i want to have a image in the top left taking up 25% of the table and text on the other side taking up 75% and then on the next row have the left colom take 75% and the right take up 25% i dont even know if that is possible following is the code that failed for me.
[HTML]
<table width="100%">
<tr>
<td width="25%"><img src="../images/image1.jpg"></td>
<td>text lots of text</td>
</tr>
<tr>
<td width="75%">text lots of text</td>
<td><img src="../images/image2.jpg"></td>
</tr>
</table>
[/HTML]