At the top of code, add this:
<style type="text/css">
body {
width:1000px; // for example
margin:0 auto;
text-align:center;
}
</style>
Might work
+ the maximum width of the pageotherwise it will not work correct
![]()
<body>
<div id="wrapper"> <!--Your wrapper div. Begin after body ends-->
<!--Site Content Here-->
</div> <!--Wrapper div ends before body tag ends-->
</body>
#wrapper
{
width:1000px; /*Or whatever your content width is*/
margin:0 auto;
}