Quote (inkanddagger @ Aug 18 2012 09:27am)
Uhm, is it possible to do that and have a centered text box on the page?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0" style="background-color: #ffffff;">
<center>
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="background-color: #ffffff;">
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="600" style="background-color: #fffff; padding: 10px 10px 0 10px;">
<tr>
<td valign="top">
<table border="0" cellpadding="-200" cellspacing="0" width="600" style="background-color: #ffffff; border: 1px solid #dddddd;">
<tr>
<td align="center" valign="top">
<!-- Begin Template Header -->
<table border="0" cellpadding="4" cellspacing="0" width="600" style="background-color: #ffffff;">
<tr>
<td width="600">
<a href="http://xxxxxxxx"><img src="transparentlogo.png" width="190" height="106"/></a>
</td>
<td>
<a style="color: #00456f; font-size: 8px; font-weight: bold; font-family: Helvetica, Arial, sans-serif; text-decoration: none; text-shadow: #9CC5C9 0px 0px;" href="xxxxxxx"></a>
</td>
</tr>
</table>
If you want your table to be a certain percentage width, you can do this in CSS:
table#table1 {
width:70%;
margin-left:15%;
margin-right:15%;
}
And then in your HTML/XHTML, you would do this:
<table id="table1">
...
</table>