Quote:
Originally Posted by Deviation
Try enclosing the vB.Sponsors code for that template in <div> tags.
HTML Code:
<div align="center">
[CODE]
</div>
Simple enough, right? 
|
Awwww well this seemed to fix the issue but only within the forums that have the banner displayed turned on an in all the other forums it still throw the template off???? Any ideas?
This is what my code looks like adding the tags you suggested.. Did I do it right?
<div align="center">
<if condition="$foruminfo[sponsor_enabled] == 1 AND $vboptions[sponsor_global_enable_sponsorship] == 1"><table class="tborder" cellpadding="6" cellspacing="1" border="0" width="468" height="60" align="center">
<tr>
<td class="tcat" align="center"><span class="normal"><font size="1">
$vbphrase[sponsored_by] </font>
</span></td>
</tr>
<tr>
<td class="alt2" align="center"><span class="normal"><font size="1"><a href="vB.Sponsors/link.php?f=$foruminfo[forumid]" title="$foruminfo[sponsor_name]" target="_blank">
<if condition="$foruminfo[sponsor_banner_enabled] == 1 AND $vboptions[sponsor_global_enable_banners] == 1">
<if condition="!empty($foruminfo[sponsor_banner_big])">
<img src="$foruminfo[sponsor_banner_big]" alt="$foruminfo[sponsor_name]" border="0" />
<else />
<img src="$foruminfo[sponsor_banner]" alt="$foruminfo[sponsor_name]" border="0" />
</if>
<else />
$foruminfo[sponsor_name]
</if></a>
</if></font>
</span></td>
</tr>
</table>
</div>