MyBB Community Forums

Full Version: add banner on logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i use the default template and this is my header
[Image: b3463d8e12c444a3d18ec27b3940ae36.png]
I would like to add a 728x90 banner on the right of the logo
what css use?
there will be problems for users who visit the forum with a lower screen resolution?




Very Thanks

up.....
ACP >> Templates >> Header Templates >> header

find the logo code as below...

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


and then add something like...

<a style="float: right; width: 728px;" href="YOUR_AD_LINK"><img src="YOUR_AD_IMAGE_PATH" alt="" title=""></a>
thanks