The fixed width portion of your question... Keep in mind the core of this program was written in 1999, and abandoned. Some one else branched that code off, and I created a branch of that. CSS, aka stylesheets weren't as widely used then, and while this script did use them, their use was primarily limited to colors, not placement and layout.
So... a couple of different approaches might be needed. The simplest is to just add something like this to the top of the stylesheet for your chosen theme.
| Code: |
body {
padding-left: 100px;
padding-right: 100px;
|
Another approach would be to hard code the width in the "table" function located in
/themes/X/tables.php where X is the name of the theme you are using. Around line #54 find
| Code: |
$html = "\r\n<!-- Start New Table -->\r\n";
$html .= "<table border=\"0\" cellspacing=\"2\" cellpadding=\"0\" ";
$html .= "width=\"" . $width . "\" align=\"" . $align . "\">";
|
You could hard code a width like this
| Code: |
$html .= "width=\"1000\" align=\"" . $align . "\">";
|
Possibly a combination of approaches might be necessary. You could also try adding
width:1000px; to the body part of the CSS , and/or use percentages for the padding values.
| Code: |
body {
padding-left:10%;
padding-right:10%;
width:1000px;
|