Sorry, I haven't been on in like 2 weeks. The 1st link I sent you shows how to put the banner in the center. Here is my site:
http://migcfdesign.com/beaconpoints/listmembers.php?s=the code is from the page_header.html page in your default template.
CODE
<body{ONLOAD}>
<script type="text/javascript" src="http://common.allakhazam.com/shared/akztooltip.js"></script>
<!-- IF S_NORMAL_HEADER -->
<table width="100%" border="0" cellspacing="1" cellpadding="2" class="borderless">
<tr>
<td width="201" nowrap="nowrap">
<center><img src="{TEMPLATE_PATH}/images/{LOGO_PATH}" alt="Logo" /><br /></center>
</td>
</tr>
<tr>
<td width="100%">
As for the other tables, I'll have to play with it. I think in order to do that you need to do a little css with <div> tags.
Here is a decent site for the code you might need.
http://www.thenoodleincident.com/tutorials...sson/boxes.htmlThis is probably what you want. The problem is you have to put the stuff into the right divisions.
CODE
#top {
margin: 20px 20px 0px 20px;
padding: 10px;
border: 5px solid #ccc;
background: #666;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 70px;
}
html>body #top {
height: 70px; /* ie5win fudge ends */
}
#left {
position: absolute;
top: 120px;
left: 0px;
margin: 20px;
padding: 10px;
border: 5px solid #ccc;
background: #666;
width: 150px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
width: 120px;
}
html>body #left {
width: 120px; /* ie5win fudge ends */
}
#middle {
margin: 20px 190px 20px 190px;
padding: 10px;
border: 5px solid #ccc;
background: #666;
}
#right {
position: absolute;
top: 120px;
right: 0px; /* Opera5.02 will show a space
at right when there is no scroll bar */
margin: 20px;
padding: 10px;
border: 5px solid #ccc;
background: #666;
width: 150px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
width: 120px;
}
html>body #right {
width: 120px; /* ie5win fudge ends */
}