4
Following David's suggestion, you could create a custom "theme" and use ThemeChanger to make custom pages use it.
Then you would create a new theme and eliminate the
header/lb/cc/cl/cr/bc/bcl/bcr/footer tables.
So basically you would have one large table.
Essentially you would have this
<body>
<table width="100%">
<td id=centercolumn>
<{include file="custom_theme/content.html">
<td>
table>
body>
Then create a file called content.html that would look something like this
<div class= "contents">
<{$xoops_contents}>
div>
Then you would just need to create a style.css and adjust propertise for .centercolumn and contents
Hope it makes sense.