MyBB Community Forums

Full Version: 2 logo in header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to display 2 logo's sidebyside on my forum.

If yes, where to implementate?



Just add another image to the header.

ACP >> Templates & Style >> Templates >> yourtheme >> Header Templates >> header

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

Add after:
<img src="images/example.png" alt="Example" />
(2010-12-07, 10:49 AM)AJS Wrote: [ -> ]Just add another image to the header.

ACP >> Templates & Style >> Templates >> yourtheme >> Header Templates >> header

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

Add after:
<img src="images/example.png" alt="Example" />
Thank's
You are great.