Forum Moderators: open
I know this is a common problem, but I haven't been able to clear it up by searching the forums or Google.
I have a simple website with a significant difference in the render of tables between FF and IE6.
Here is the site:
<link removed>
Here is a comparison shot between FF and IE6:
<link removed>
I'm using Dreamweaver to draw the tables, and it is more or less WYSIWYG with FF, but it just doesn't agree with IE.
I have tweaked and manually input the cell pixel values, but nothing seems to work. Often, it just makes it worse.
Any suggestions would be greatly appreciated!
Thanks,
Matt
[edited by: incrediBILL at 2:11 pm (utc) on July 3, 2009]
[edit reason] removed URLs, see TOS #13 [/edit]
It's a small icon with a cell to the right of it containing text. In FF, the spacing renders well. In IE6, the text table is bumped way over to the right, creating lots of extra space between the icon and the text, and also throwing off the spacing of the larger table it is within.
Here's the snippet that seems to be the issue:
<td height="286" rowspan="2"> </td>
<td width="65" height="64" align="left"><img src="graphics/L-button.jpg" width="60" height="60"></td>
<td width="361" height="64" align="left">
<p><font size="2" face="Arial, Helvetica, sans-serif"><strong>orem Ipsum</strong> dolor sit amet, consectetur adipiscing elit. Donec at mi mi, ac tincidunt diam. Duis eget dolor mauris. Nulla facilisi. Aliquam nunc turpis, hendrerit non sollicitudin vitae, tincidunt iaculis odio.</font></p>
Thanks for any insight!
[edited by: tedster at 10:34 pm (utc) on July 4, 2009]
[edit reason] replace specific text with Lorem Ipsum [/edit]
Thinking about the visual effect you are trying to achieve, you might have better cross-browser results by not placing the icon in its own table cell. Instead place it with the text but float it to the left, with however much right margin you want to see.
<img src="graphics/L-button.jpg" width="60" height="60" style="float:left;margin-right:7px;"><strong>orem Ipsum</strong> dolor sit amet, consectetur adipiscing elit.
[edited by: tedster at 12:07 am (utc) on July 11, 2009]