MyBB Community Forums

Full Version: Add banners next to the logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I hope I am posting this in the correct section. I am wanting to add my advertisement banners to the right side of my forum logo as you can see in the attached image.

I was wondering if anyone knew the code to be able to do this?

Any help is greatly appreciated.
Header template

Find:
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

Add after:
Quote:<div style="float:right; padding:20px;"><img src="image link here"></div>
Thanks for that Smile not quite what I wanted though, sorry I should have stated in first post it's for a banner plugin I have added, the code to show the banners is {$banner}, I am wanting to add the banner code to the right of my forum logo Smile

Thanks.
<div style="float:right; padding:20px;">{$banner}</div>