Installing google adsense on Word press

I am trying to install google adsense on the right hand side bar near the top of my wordpress site. I’ve installed the widget and have put in my google id code. I can’t see anywhere in the widget options where I can tell it to but above the comments section but where I dragged the widget to on the sidebar there is a black dot showing. As far as I can tell my account should be activted with google. I have used adsense on other sites but not by means of using a widget. Usually i just copy the code and past it in. Maybe there is a better way to do this. I tried posting a question on Wordpress forums but got no response.

My website is http://www.serendipitini.com/

You could hook it in using a thesis_hook

Why don’t you ask on the Thesis forums?

You could hook it in before the sidebar


function sidebar_one_ad() {
?>
<div class="advert"><script></script></div>
<?php
}
add_action('thesis_hook_before_sidebar_1', 'sidebar_one_ad');

Source http://diythemes.com/thesis/wordpress-ad-placement-guide/

Or make sure you wrap it in script tags in a widget http://www.siteground.com/tutorials/wordpress/wordpress_adsense.htm


<script type="text/javascript">
//<![CDATA[
var i=10;
if (i<5)
  {
  // some code
  }
//]]>
</script>

Thanks. I will give it a shot

Worked like a charm