how can i centre my page ?

S

Steve Nics

Im currently designing my web site using Front Page 2003, when viewed on the
web, the page appears on the left hand side of the screen and not in the
centre.

How can I centre the page..

Any help would be much appreciated.
 
P

pink heather

I'm using tables on my website and all I did was select all and hit the
center button on the text toolbar. It centered the entire page with
pictures.... And I still could choose how the text in each cell should be
aligned.
HTH
 
A

Andrew Murray

<div align="center">
.................
</div>

Or
<table align="center">
.......
</table>

or

<style>
body { align: center; }
</style>

Or whatever.
 
Top