Topic: Web design problem. Pls help me

A friend of mine asked me to make him a web site; since I'm really new at this I said I'll give it try. Now I have a problem I made the site on my pc with 22" screen and when I open it it looks fine. But when I open it on the laptop with 15" screen the whole page is shifted to the left with 1/3 of the screen empty ( just the background color ). So how do I make the page to be in the center of the screen no mater what size it is; and to allways be over the entire screen.

Pls if someone knows; as I said I'm totally new at this so if you can explain it with a little more details. TY in advance.
P.S. I'm using NetObjects Fusion

Re: Web design problem. Pls help me

Depends on how you have your site coded. You have a link to the site so we can look at the code?

Re: Web design problem. Pls help me

Try this:

body {
margin: 0;
text-align: center;
}

#wrapper {
margin: 0 auto;
text-align: left;
}

As Ben stated - try and provide your code with these requests....