Forums

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

Home Forums Back End WordPress PHP Alignment Re: WordPress PHP Alignment

#64640
dhechler
Member

Heres what i found.

You need to add margin: 0 auto; to your #page-wrap in your style.css file. Right now you have it as



If you want to do it that way (inline styling) then you need to do this



but it would be better to add this into your css as


#page-wrap{
width: 1024px;
margin: 0 auto;
}

That should fix what you want.