Sorry, the code wasn't copied correctly, it does start with <? not ?
EDIT: Alignment issue fixed! I was doing this PHP coding right before bed, so no wonder it all went wrong.
This is why it wasn't aligning properly. There were two instances of <td align="center">
I changed:
Code: Select all
<tr valign="left">
<?php print "<td align=\"center\">$WUforecasticons[0]<br />$WUforecasttemp[0]</td>\n"; ?>
To:
Code: Select all
<tr valign="left">
<?php print "<td align=\"center\">$WUforecasticons[0]<br />$WUforecasttemp[0]</td>\n"; ?>
Then, I changed:
Code: Select all
<table border="0" cellpadding="2" cellspacing="0">
To:
Code: Select all
<table border="0" cellpadding="1" cellspacing="1">
Then, the alignment issue dissapeared!
