how can i centre my page ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 
<div align="center">
.................
</div>

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

or

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

Or whatever.
 
Back
Top