Hello, I just wrote a post on my little blog about a css trick I use sometimes when I want to put adsense or an image inside a text without having to do anything in PHP, it works for any raw text. You know you often see an adsense ad on the left of an article, and the text flows on the right and at the bottom of the adsense, it's made with css float:left this is a well known way to put adsense within the text because it works well for increase CTR. But what if you want the article to start with text above the adsense, then since you have the adsense on the left and the text then goes to the right of the adsense and then goes back below? You need to use a little css trick, in fact it is a small 1px width div that you set to float too, but the next div, with your adsense code, as a clear:left added, that will make the adsense goes below the first 1px width div. That way it will look like the adsense is below the beginning of the text, because you don't see the first 1px width div. Read on my blog for more details, with some explanation: http://blog-money-wiki.com/blog/200...le-trick-to-insert-an-image-within-a-text.php And then ask HERE if you need more information, don't post comments on my blog since I don't use it often, I just post from time to time.
Yes, I use this as well, although, sometimes when I'm lazy, I just stick it into the style element of the div, without css files.