If you go to the page is centered how I want it in Mozilla, but if you open with IE6 it is to the left. Thanks for the help
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<div style="text-align: center;"></div>
<table style="[red][b]text-align: left;[/b][/red] margin-left: auto; margin-right: auto;" border="0" width="600">
<tbody>
<tr>
<td width="82"><img src="StarCard.gif" height="139" width="82"></td>
<td width="468">
<div align="center"><font color="#ffffff"
face="Georgia, Times New Roman, Times, serif" size="+2"><strong>Psychic
April has 15 years experience in Psychic, Palm, and Tarot Readings</strong></font></div>
</td>
<td width="36"><img src="Queen%20Card.gif" height="134" width="80"></td>
</tr>
</tbody>
</table>
<div style="text-align: center;"></div>
<table style="text-align: left; margin-left: auto; margin-right: auto;" border="0" width="600">
... contents here ...
</table>
<div style="text-align: center;">
<table style="text-align: left; margin-left: auto; margin-right: auto;" border="0" width="600">
... contents here ...
</table>
[red]</div>[/red]
The above is NOT true with MSIE6. It understands "margin:auto" fine as long as you use a valid <!DOCTYPE>.Unfortunately, IE doesn't understand margin: auto, so you have to explore one of its rendering bugs. If you put the table in an area where the text is centre-aligned the table will be too. It looks like somebody has already tried to do that with the <div>, but the table needs to be inside the <div>, not next to it. Change your code to the following and it should work:
<div style="text-align: center; margin-left: auto; margin-right: auto;">
<table style="text-align: left;" border="0" width="600">
... contents here ...
</table>
</div>