MyBB Community Forums

Full Version: Change the banner on header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well mine default themes is in templates, i will show 3 screenshoots how are displayed mine themes

1.) http://postimg.org/image/3p6ezhji9/
2.) http://postimg.org/image/nfc1sy5pd/
3.) http://postimg.org/image/9tw37bftv/
Finally i have find the code of the banner, so can i replace it with adsense code?

<div class="google_add left">';

$SelectTopBanner = $db->query("SELECT * FROM banner WHERE banner_position = 'home_top' AND provider_status = 'Active'");
while($FetchTopBanner = $db->fetch_array($SelectTopBanner))
{
if($FetchTopBanner->code == 'false' || $FetchTopBanner->code == ''){
$social .= '<a href="http://'.$FetchTopBanner['banner_url'].'" target="_blank">
<img src="'.$mybb->settings['homeurl'].'banner_images/'.$FetchTopBanner['banner_image'].'" height="60" width="468" alt="google add" title="" /></a>
</div>
</div>';
} else {
$social .= $FetchTopBanner->banner_code.'</div></div>';
}
}

?>
Pages: 1 2