Quote:
Originally Posted by RichieBoy67
I am having the same problem and I have tried a bunch of difrent tags to no avail. I do already have rotating banners in the header but I am not sure why that would effect this...
Does anyone have a fix???
Thanks
|
Ya was a lamebrain when I coded the hack. My brain grew since then.
In the Attached file:
/////////////////////////////
Edit Template : ForumDisplay
//////////////////////////////
- Find:
$navbar
- Below add:
Code:
<if condition="$foruminfo['banner'] AND $foruminfo['bannerlink']"><center><td><a href="$foruminfo[bannerlink]" target="_blank"><img src="$foruminfo[banner]" alt="$foruminfo[banneralt]" border="0" /></a></td></center>
<else />
<if condition="$foruminfo['banner']"><center><td><img src="$foruminfo[banner]" alt="$foruminfo[banneralt]" border="0" /></td></center>
</if>
</if>
change it to:
Code:
<if condition="$foruminfo['banner'] AND $foruminfo['bannerlink']"><center><a href="$foruminfo[bannerlink]" target="_blank"><img src="$foruminfo[banner]" alt="$foruminfo[banneralt]" border="0" /></a></center><br />
<else />
<if condition="$foruminfo['banner']"><center><img src="$foruminfo[banner]" alt="$foruminfo[banneralt]" border="0" /></center><br />
</if>
</if>
I killed the <td> </td> and added a <br /> to space the banner and the rest of the forum list.
I will update the main hack soon. I will also have a VB3.5 ver sometime today.