PDA

View Full Version : How do I change where the logo is placed?



EAL
Sun 14th Oct '07, 7:23pm
never mind, wrong subject title - sorry

Thanks.

Floris
Sun 21st Oct '07, 10:08am
In order to center the logo, you need to edit the Header Template:

AdminCP > Styles & Templates > Style Manager > Common Templates (from drop menu next to style name)

The first portion of the Header Template is what you need to edit.

Find this:

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

Now that the nav buttons are in the
navbar template, you can stick whatever
you like into this space.

This makes it much easier for novice
admins to customize their header
template without affecting important
navigation elements.
-->
</td>
</tr>
</table>
<!-- /logo -->


And replace it with this:

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