Are you talking about CSS?
Here is using a wrapper to keep things in place..
Change the -
</head>
to this -
<style type="text/css">
<!--
body { text-align:center; color:#CCC; }
#wrapper { text-align:left; width:720px; margin:0 auto;position:relative; }
-->
</style>
</head>
change this -
<body ...>
to this -
<body ...>
<div id="wrapper">
and this -
</body>
to this -
</div><!-- /wrapper -->
</body>
That's about as easy as it gets....
bob
| Thanks for the tips Murray I'll try those....
|
| Is there nothing I can put betwixt the <head> </head> tags that takes care
| of the issue? - rather than delaing with body objects/elements?
|
| --
| _________________________
| Michael V Eayds MCSE
| What could possibly go wrong?
| _________________________
| | > 1. Make the outermost table align center - <table align="center"....
| > 2. Wrap the content in a center aligned div - <div align="center"....
| > 3. Use CSS to control the width and margins on your content.
| >
| > Take your pick.
| >
| > --
| > Murray
| > --------------
| > MVP FrontPage
| >
| >
| > | >> What is the best way to center a web page on a site rather than have it
| >> 'left marginized'?
| >>
| >> Thank you in advance.
| >>
| >> --
| >> _________________________
| >> Michael V Eayds MCSE
| >> What could possibly go wrong?
| >> _________________________
| >>
| >
| >
|
|