Log in

View Full Version : How to get banner in center of page


Blam Forumz
07-26-2004, 07:21 AM
Like this forum does it, i would like to center my logo...but i cant seem to...

help

thanks

Blam :nervous:

Michael Morris
07-26-2004, 07:36 AM
It's a template modification of the navbar template, not a hack.

Go to your admincp and open your stylemanager. Select "Edit Templates" under your default style. Scroll down and find "Navigation and Breadcrumb templates" double click that (in IE). Select navbar.

Look for this code

<!-- / nav buttons bar -->
<br />


Beneath it add the code you want for your site logo. You can use <center> tags or put it in a standalone table and center its contents.

Vega
07-26-2004, 07:56 AM
Or you could just replace the content of your header-template with that:

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"><a href="$vboptions[forumhome].php?$session[sessionurl]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
</tr>
</table>
<!-- /logo -->


<!-- content table -->
$spacer_open

$_phpinclude_output

Michael Morris
07-26-2004, 08:11 AM
I wouldn't recommend calling spacer open after the navbar opens unless you have a specific layout in mind for that. I work on a site that does just that.

Anway, the spot where you insert code into that are of the page is right after the navbar body - header contents not withstanding. If you do move the contents of the header into the navbar that way, remember to erase your header!! calling $spacer open TWICE falls under the heading of *not good* as unclosed <div> tags can choke some browsers.