MyBB Community Forums

Full Version: Add big sign in the middle
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guys does anyone know how to add big huge log in the middle like this site has http://empiremethod.com/
i want to add my logo in my forum but i don't know how to so please help thanks.
ACP -> Templates & Style -> Templates -> Your Current Template -> Header Templates -> header:

Find this code:
	<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}			
                        <navigation>
			<br />

Right after that, add this:

<img src="www.yourimagelogourl.com" width="100%" height="the-height-of-the-image"/>

--------------------------------------------------------------------------------------------------------------

so it should look like this:
	<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}			
                        <navigation>
			<br />
<img src="www.yourimagelogourl.com" width="100%" height="the-height-of-the-image"/>

Smile