Forum Moderators: open
I have a table of 2 columns. In column 1 I have text links, column 2 is the main information.
The problem is that column 2 will host php content that may change it's height.
I found that on Internet Explorer column 1 will change it's height too and links will not be at the top of the row but in the middle.
Here is the html code:
<table width="895" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="208">text links will be here</td>
<td width="687" colspan="3" rowspan="2" bgcolor="#FFFFFF">this is the main information section</td>
</tr>
<tr>
<td>image will go here</td>
</tr>
</table>
Any ideas on how to lock cell 1 of column 1 so that the links are at the top?