well im setting up a website www.fitness-freakz.com template is dumped on site but no alterations made how do i make the website be centered - like in the middle of the page as it looks rubbish on the left and i know its not the best website template but w/e
It seems like a <table> design, maybe <table width="766" align="center" border="0" cellpadding="0" cellspacing="0"><tr><td> Your content html is put here. </td></tr></table>
for tables the example above should work just fine. If you go with divs I would work out the CSS (div.center { margin:0 auto; }) applying margin:0 auto will center the layout but not the text.
i always use the wrap #wrap { width: 760px; margin: 0px auto 0px auto; /* top, right, bottom, left */ padding: 10px; border: 1px solid #000; background-color: #eee; } then place the content inside <div id="wrap"> works a treat
Actually it doesn't really matter whether the layout uses tables or divs, the previously mentioned <div style="margin: 0 auto;">content</div> will work fine.