Hi, when I create a TABLE and add a width to one of the columns, IE6 doesn't adhere to my width attribute (neither HTML nor CSS). How can I force IE6 to have that column as wide as I constrain it to? TIA, Axel Dahmen Here's an example of what I mean: <table cellpadding="0" cellspacing="0" border="1" width="100%"> <tr> <td width="110"><img src="..." width="110" height="200"></td> <td> </td> </tr> </table> You will note that the left column is broader than the image it contains although I've set it to the same size. This is just because the right column doesn't contain enough content.