Log in

View Full Version : Banner Positioning. HELP!


lolzers
11-28-2007, 12:54 AM
For some odd reason, my banner is 2 pixels off, http://www.ohupload.com/files/1196218281.gif

To make sure it wasn't the skin, I created a new skin and added the banner and it has done the same thing. What is the problem?

Audentio
11-28-2007, 12:58 AM
Your header template: <!-- 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]">
&nbsp;
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output


Replace this with:

<!-- 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>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output


Its basically just finding the <td align="$stylevar[right]">
&nbsp;
</td> and deleting it.

lolzers
11-28-2007, 01:27 AM
Thanks.