MyBB Community Forums

Full Version: logo background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do I have a logo, and then have a repeating image to use up the space next to the logo?

cheers
open up Admin CP, to to templates -> "modify/delete" -> Click expand next to the template you are using -> Open the template called "header"

look for this:
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

and replace with this:
			<div style="background-image:url('/path/to/background/image.png'); background-repeat: repeat-x;"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>
changing /path/to/background/image.png to the location of your background image.

depending on other settings to your theme and template this may or may not work.
thanks