Adding Google Ads

How do you get the google ads at the bottom of the mobile skin? Looks cool.

#535048

I went ahead and moved your post to the correct forum.

To add google ads (mobile verisons).

Add this to the bottom of the globalTemplate before </body>

<if test="!$this->memberData['member_id']">
<script type="text/javascript"><!--
window.googleAfmcRequest = {
client: 'ca-mb-pub-3742686364777450',
ad_type: 'text_image',
output: 'html',
format: '320x50_mb',
oe: 'utf8',
color_border: '0f3c6e',
color_bg: 'FFFFFF',
color_link: '0f3c6e',
color_text: '4c5f71',
color_url: '006600',
};
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_afmc_ads.js"></script>
</if>

MAKE SURE you change the "client: 'ca-mb-pub-3742686364777450', " part with your adsense bit.

Rest you can use, for the correct colors + ad size.

#535056

Also that above code will only show ads for guests, if you want it shown to everyone, remove the first ("<if test="!$this->memberData['member_id']">") and last ("</if>") lines.

#535057