1. in stylesheet.css
CODE
div#body{background-image: url(./images/body_backgorund.jpg);border: 1px solid #00008b;}
div#content{border: 1px solid #00008b;width: 800px;}
2. In index.php and all possible files search for (can be done recursively with many editors):div#content{border: 1px solid #00008b;width: 800px;}
CODE
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
and replace with:CODE
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<div align="center" id="body"><div id="content" width="800">
3. In index.php and all possible files search for:<div align="center" id="body"><div id="content" width="800">
CODE
</body>
</html>
and replace with:</html>
CODE
</div></div>
</body>
</html>
4. In index.php, includes/header.php and footer.php (maybe in other files as well) you may need to set:</body>
</html>
CODE
<!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3" align="center">
to desired width.<table border="0" width="100%" cellspacing="3" cellpadding="3" align="center">
Maybe beginner - like me - would find this primitive way usefull.

