How do I wrap the content around the ad? (Kindly chk the attachment) I am using AdSense plugin for WordPress.
Like on the blog I built here? http://www.pspswish.com/homebrew-development/dark_alex-working-on-a-new-modchip-flasher/
You'll need to put the Adsense code inside a <div> and float it to the left, like this: <div style="float:left;"> --adsense code goes here-- </div> Continue your blog post blah blah blah Or, if you want to put the styling inside the stylesheet, do this: 1. Locate the stylesheet for your Wordpress theme, say styles.css 2. Create two new classes in the styles.css file, say: .adsleft { float: left; } .adsright { float: right; } 3. Then, in your Wordpress template or post, enter this: <div class="adsleft">---adsense code---</div> (if you want to float the adsense unit left) Blah blah blah post &/or php code <div class="adsright">---adsense code---</div> (if you want to float the adsense unit left) Blah blah blah post &/or php code Hope this helps. Do ask if you need more clarification.