by Yachtsman » Sun Dec 13, 2009 12:07 pm
I unsure what you are asking.
I'm trying to create a template that I can use for several pages. At the moment I'm just trying to get a very simple example to work.
I would assume <body style="text-align:center"> would center the page but it does not work in my example.
<body style="text-align:center">
<table style="width:300px;">
<tr><td>
<p>Now is the time for all young men to come to the aid of their country.</p>
</td></tr></table>
</body>
If I add <cneter> to the example it does work.
<body style="text-align:center">
<center>
<table style="width:300px;">
<tr><td>
<p>Now is the time for all young men to come to the aid of their country.</p>
</td></tr></table>
</center></body>
However, doing that to my more complex page does not work.
I have look at example that do cneter and those that do not and have not found the difference in the code.