is that allowed? ive read from somewhere that someone got his site banned because of putting their ads under the blog post title. just a question, i don't really mean to hijack this thread.
You should post in blogging section..anyway, just insert the adsense codes into the end of your header.php file using your wordpress admin panel. Adjust and DIV if necessary Hope everything work out
Dude, he asked how to do it with a blogger blog. Reading is fundamental. You need to find this section of code in your template: <b:if cond='data:post.title'> <h3 class='post-title'> <b:if cond='data:post.url'> <a expr:href='data:post.url'><data:post.title/></a> <b:else/> <data:post.title/> </b:if> </h3> </b:if> Code (markup): Place your code immediately after that and it will show up between the post title and the body of the post. However, you may want to set it up like I have: <b:if cond='data:post.title'> <h3 class='post-title'> <b:if cond='data:post.url'> <a expr:href='data:post.url'><data:post.title/></a> <b:else/> <data:post.title/> </b:if> </h3> </b:if> <div class='post-header-line-1'/> <div class='post-body'> <b:if cond='data:blog.pageType == "item"'> <div style='float:left;margin-right: 5px;margin-bottom: 5px'> <ADSENSE CODE HERE> </div> </b:if> Code (markup): This is set up to include the adsense code in the post body only if the blog is displaying a single post. In that way, you don't accidentally display more adsense ads on a single page than you are supposed to. Additionally, I wrapped the code in a div that floats the code to the left so text wraps around the ad. I use a small square ad in that area and with the text wrapping around it looks very nice.