How to put Google Adsense on left sidebar in Office Live?

+3 votes
how to have adsense unit just below menu on left sidebar?
asked by anonymous

1 Answer

+2 votes
 
Best answer
Modify below 4 lines according to your adsense code.

google_ad_client = "pub-123456789";
google_ad_slot = "1234567";
google_ad_width = 120;
google_ad_height = 600;
--------------------------------------------------------

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" omit-xml-declaration="yes"/>
<xsl:template match="/">
<div id="myAd">

<script type="text/javascript"><![CDATA[<!--

google_ad_client = "pub-123456789";
google_ad_slot = "1234567";
google_ad_width = 120;
google_ad_height = 600;

//-->]]>
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<script type="text/javascript">
var leftNav = document.getElementById('IWS_WH_Elem_LeftNav');
leftNav.appendChild(document.getElementById('myAd'));
</script>
</xsl:template>
</xsl:stylesheet>

--------------------------------------------------------
put above code into custom footer module.
answered by anonymous