its a xml file that outputed by a xsl template
xsl: below
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<link rel="stylesheet" type="text/css" href="CSS\news.css"/>
</head>
<body>
<table id="newsmodule">
<tr>
<td id="header" align="left"><img src="news.bmp"></img></td>
</tr>
</table>
<xsl:for-each select="/articles/article">
<table id="main">
<tr>
<td id="articletitle"><xsl:value-of select="title"/></td>
<td id="articledate"><xsl:value-of select="date"/></td>
</tr>
</table>
<table id="articlecontent">
<tr>
<td id="articlecontent">
<p id="articlecontent"><xsl:value-of select="content"/><BR/><BR/><I id="author">-<xsl:value-of select="author"/></I></p>
</td>
</tr>
</table>
</xsl:for-each>
<BR/>
<BR/>
<table id="copyright">
<tr>
<td id="copyright">
<CENTER>
<p id="copyright">Copyright 2004-2010 by Parawizard Web Design</p>
</CENTER>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
you see anything wrong? the only center tag i have is at the very bottem on the copyright table