anyone knows how to implement the ads at the center of the post's body? so that visitors might click on the ads when they r thru the posts?
Use a floating div, for example: Text text text <div style="float:left; padding:5px;"><!-- Your Adsense code --></div> text text text Code (markup): Or if you are using Wordpress, use an Adsense-specific plugin. Search for it on the Wordpress site: http://wordpress.org/extend/plugins
If you are talking about WordPress then i am 100% <div> won't work. The content of a post is in a paragraph <p> and with the HTML standards div inside a paragraph is not correct, so that would break your HTML/XHTML validation (if it will even work, which i doubt). Instead, use a span i.e. <span style="float:left;"><!-- adsense code --></span> , in case you can't put the adsense code right into the post, try installing AdSense Deluxe plugin for WordPress. Cheers.
thanx all... luckily im on blogger n not wordpress... so if i implement the code, the google ads will appear at the middle of post ryte?
Personally, I'd try editing the template and using the space around the posts first. The Blogger interface have Adsense insertion built in. It might be a pain to manage in the long run if you insert these ads into the posts themselves. Because the Adsense bot will limit each page to 3 ads, sometimes you might get a blank spot in a post where an ad should be.