how do i center a web page in Frontpage 2002?

G

Guest

I am trying to build a website with FrontPage 2002.
When the pages load into a browser (say, IE6) I would like all the pages to
be displayed in the center of the browser but cannot work out how to do this.

Any ideas?
 
S

Steve Easton

Make a centered table of a fixed width, say 750 pixels, and place the content inside the table.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
M

Murray

A generic answer would be to put each page's contents inside a center
aligned table, e.g.,

<body>
<table align="center"...>
{the rest of your page's content}
</table>
</body>

but this may not be appropriate for your particular page layout.

In addition, you can easily center an entire page (regardless of layout
method) using CSS techniques. I'm guessing that this may be beyond you at
this point?
 
T

Thomas A. Rowe

Will only work if not using themes or shared borders.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
A

Andrew Murray

Marco VB said:
I am trying to build a website with FrontPage 2002.
When the pages load into a browser (say, IE6) I would like all the pages to
be displayed in the center of the browser but cannot work out how to do this.

Any ideas?

the html code is

<p align="Center">sfsafsfsafsda</p>

or put your content in a table, and centre the table.
 
M

Murray

<p align="center"> as a general method for centering a website would be
problematic when you attempt to put a table or an <h1,2,3,4,5,6> tag in
there - such nesting is not valid....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top