Hi gang, I jsut started a new blog and i added adsense to my pages, and every thing works fine, except I cannot get the text in my posts to wrap around the left side adsense block, instead my entire post starts beneath my adsense block. Can someone give me some insight into solving this issue? I want my text to start to the right of the adsense block at the top and then flow down as the post continues. Like when you wrap text around a picture. Also if you notice anything else about the site you would care to comment on, I would appreciate it. http://windowcleaningsuccess.com/blog Thanks in advance.
Create a CSS div for the adsense block and set it to float:right (or float:left depending on which side you want the adsense on). Hope that makes some sense.
If you're using Wordpress, it's much easier just to use a plugin unless you MUST code and work everything out yourself. This should be a good link to start you off: http://www.quickonlinetips.com/archives/2006/11/10-best-wordpress-plugins-for-google-adsense/
Try this: put this on your page/post: <div class="adsense"> adsense code here </div> HTML: put this in your css file: .adsense{ float:left height:x; width:x; margin:5px; } Code (markup): replace x with the height and width of your adsense unit. Try that and see if it works...