MyBB Community Forums

Full Version: [HOW TO] Add Ads on..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I Want To Add a Ads under myBB LOGO..
How To Do THIS ??
Thank You !
Heloo there

this will make it as i have it on my board
in Header template
find

Code:
<hr class="hidden" />
            <div id="panel">
                $welcomeblock
            </div>

replace by

Code:
<hr class="hidden" />
<table width="100%" border="0">
����<tr>
������<td width="50%"><div align="left"><a href="http://thetechex.net"><img src="http://techex.techindo.com/images/logo2.jpg" alt="TECHEX - The Forum" border=0></a></div></td>
������<td><div id="panel">
                $welcomeblock
            </div></td>
����</tr>
��</table>

in case you faced some problem, pls in the theme manager change the width of the welcome panel to 50%


however if u only want to add another image below the logo , then just find
Code:
<div class="logo"><a href="$settings[bburl]/index.php"><img src="$theme[logo]" alt="$settings[bbname]" border="0" /></a></div>

below it add

Code:
<div class="logo"><a href="http:/somesite"><img src="./images/image.gif" alt="something" border="0" /></a></div>
regards
>>>FILLED<<<

Thank YOU !