So you want to change the banner at the top of the page?
This is what a Test Style or Default code looks like for the Header in
Admin CP > Styles & Templates > Style Manager > All Style Options > Common Templates > Header
Code:
<!-- 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_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]">
</td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
This is one we have a customized style on:
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="958" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="http://legionofangels.net/banners/job960.jpg" border="0" alt="$vboptions[bbtitle]" /></a></td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
You'll probably be fine with changing the part after img src = to whatever the url is of your banner, and change the alignment to whatever you want, left, right, or center. If it still looks strange you might need to change your table width, all are shown within the code above, I hope that helps.