Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help Centering Blog Re: Help Centering Blog

#82322
deanpogni
Member

Hey, (first post!)

Here are some changes I would make to your site.

I noticed that the content isn’t centered to the background and scrolls at a different percentage than your content. change this:

#wrapper {
margin: 0 auto;
width: 100%;
}

to

#wrapper {
margin: 0 auto;
width: 900px;
}

also, this one is more a matter of preference but…

in the body area, make this change:

 background-position: center center;

change it to

 background-position: center top;

this will lock your background to the top so you don’t have that white border on top. which is happening to me on my 24 inch monitor. You might want consider a bigger background or something that repeats.