Off the top of my head. Look in your theme.php for this line
|
Code:
|
echo "<body bgcolor=\"#000000\" text=\"#FFFFCC\" leftmargin=\"10\" topmargin=\"10\" marginwidth=\"10\" marginheight=\"10\">"; |
that is what defines the small border region around the whole page(margin).
Now look in your header.html file
|
Code:
|
<table class="bodyline" width="100%" cellspacing="0" cellpadding="0" border="0"> |
The very top table defines the width of the entire page I believe...Try changing that width percentage and see what happens. If you knwo HTML, you shouldn't have ANY problems...
Be careful if you are using Dreamweaver though, it sometimes puts in missing closing tags automatically when they should be left open. The theme.php calls each html part in sequence. The html tags carry on from the header.html to the footer.html.
mikem