|
|
Registered User Currently Offline
|
Posts: 6
Join Date: Mar 2006
|
For those with little code experience, in your header, before any of your forum code you simply need to add the line;
Code:
<div style="width: 900px; margin: 0 auto;">
and after your code, in the footer, right before </body>
Code:
</div>
This is the fastest and easiest way of giving a fixed width, it's much cleaner than tables because your not forcing your browser to render an extra, un-needed table. It also allows for more gracefull de-gradeing if viewed on mobiles/pdas (not forcing a width)!
|