MyBB Community Forums

Full Version: Code for advertising?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi everyone please can somebody tell me how to add advertising to my site?
or give me the code used for the advertisements template
You just add the ad code to the templates.

What sort of advertisements? Google will give you the code to use when you setup an Adsense account.
If you want to add your adsense code in Header, then here is how;
Go to: ACP > Templates > Your theme's templates > Header Templates > header > and find;
<navigation>
(or where ever you it to show)
and add the following code just below that;
<div align="center">YOUR_ADSENSE_CODE_GOES_HERE</div>

Replace YOUR_ADSENSE_CODE_GOES_HERE with your adsense code.

Similarly if you want it to show in footer, then;
Go to: ACP > Templates > Your theme's templates > Footer Templates > footer > and find;
<div class="bottommenu">
(or where ever you it to show)
and add the following code just above that;
<div align="center">YOUR_ADSENSE_CODE_GOES_HERE</div>

Replace YOUR_ADSENSE_CODE_GOES_HERE with your adsense code. Wink