I'm having the weirdest problem in IE 6. I have a very simple page that is being displayed wrong. There are 3 rows: 1 defining widths, 1 with a colspan=2 header, and the 1 with two cells representing the menu and body. I cut out all of the formatting and image fat to see if that was the issue, but it wasn't. Here's the HTML that causes the problem:
<table width="100%">
<tr><td width="151"></td><td></td></tr>
<tr>
<td bgcolor="gray" colspan="2">
This is just a really long string to
compress the body section of the table
</td>
</tr>
<tr>
<td bgcolor="green">menu</td>
<td bgcolor="blue">body</td>
</tr>
</table>
If anyone can figure out why IE has this problem I'd appreciate it. I have to have the first column with the specified width so it doesn't change on different pages. The second column doesn't have one so it will adjust with the page/browser width.
________________________________________
Michael C Flanakin
Indigo Web Systems
michael.flanakin@indigows.com
<table width="100%">
<tr><td width="151"></td><td></td></tr>
<tr>
<td bgcolor="gray" colspan="2">
This is just a really long string to
compress the body section of the table
</td>
</tr>
<tr>
<td bgcolor="green">menu</td>
<td bgcolor="blue">body</td>
</tr>
</table>
If anyone can figure out why IE has this problem I'd appreciate it. I have to have the first column with the specified width so it doesn't change on different pages. The second column doesn't have one so it will adjust with the page/browser width.
________________________________________
Michael C Flanakin
Indigo Web Systems
michael.flanakin@indigows.com