MyBB Community Forums

Full Version: Ads on side bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've been searching for a plugin/mod that will put ads (adsense or whatever) on the side of my forums. LIke off to the right most likely. Is there anything like this?

If it matters I'm using the Red Eclipse skin. See my new site here if you need to view it... http://zombiesurvivalhq.com/forums
In the index template find:
{$header}
{$forums}
{$boardstats}

Replace with:
{$header}
<div class="sidebar" style="float:right; width:25%;">
**Ad Code**
</div>
<div class="forums" style="float:left; width:75%;">
{$forums}
{$boardstats}
</div>
(2011-03-20, 01:08 AM)AJS Wrote: [ -> ]In the index template find:
{$header}
{$forums}
{$boardstats}

Replace with:
{$header}
<div class="sidebar" style="float:right; width:25%;">
**Ad Code**
</div>
<div class="forums" style="float:left; width:75%;">
{$forums}
{$boardstats}
</div>

Awesome! Thanks!! Is there any way though to have it go to the right of my forums rather than shrinking my forums in and adding the ads? I hope I'm clear on what I mean.

Thanks!