My webpage not centered at all screen resolutions

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

Guest

I have created a webpage using Frontpage 2002, and although on the screen resolution I am using it looks centered, on smaller resolutions the whole page jumps to the right. How do I rectify this problem?? The webpage address is www.crowncalisthenics.funurl.com The background lines were all drawn individually and placed there.
 
first, I got whacked with a bunch of pop-ups and a run-time error.
secondly you're mixing a lot of table stuff with absolute positioning. It's
like asking for trouble.
there is a ton of unnecessary and extraneous code in the page. You could
make the source code about 50% of what it currently is and still have the
same page.

HTH

--
The email address on this posting is a "black hole". I got tired of all the
spam.
Please feel free to contact me here:
http://nedp.net/contact/
--


K said:
I have created a webpage using Frontpage 2002, and although on the screen
resolution I am using it looks centered, on smaller resolutions the whole
page jumps to the right. How do I rectify this problem?? The webpage
address is www.crowncalisthenics.funurl.com The background lines were all
drawn individually and placed there.
 
Hi,
that works fine but it's not really necessary. You can just set margins
either side of the page, eg
<style type="text/css">
body{
margin: 0 10%;
}
</style>
and then
<body>
your page content
</body>

would produce exactly the same page as
<table width="80%" align="center">
your page content
</table>

But is probably quicker to develop and easier to maintain/modify in the
future

Jon
Microsoft MVP - FP
 

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

Back
Top