devinemike wrote:note: this has nothing to do with PHP
Also, see how this table:
<table width='300' cellpadding='7' cellspacing='0' style='border: 1px dashed #AAAAAA; background: #F5F5F5;'>
is not centered, while this table:
<table width='100%' cellpadding='0' cellspacing='0' align='center'>
is? Notice anything in the second table that might cause this behavior? Also, you could probably nest all of the HTML elements in a centered DIV tag, like so:
<div align="center">
(Centered item(s) here)
</div>