Quote:
Originally Posted by Devil Woman
Hi there, I have put the correct code in and all is working fine  thanks for that
No what I want to do is have the banners on the opposite side of the forum banner.
The forum banner is on the left hand side, I want the banners to go on the right hand side of the header so that it is opposite the banner
Thanks
|
In the header template find this:
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 --><br>
Each column are specified with the <td></td> tags, each new row are between the <tr></tr> tags, so to add another column just add another column tag (<td>$bannerads</td>) after the last <td></td> tag (in between the </td> and </tr> tag).
wich of course would turn out like this:
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>
<td>
$bannerads
</td>
</tr>
</table>
<!-- /logo --><br>
Basic table building..