Forum Moderators: martinibuster

Message Too Old, No Replies

Text Not Wrapping Around My Ads - Help!

Using a 336x280 , and my content appears below, not around : (

         

sinclasc

5:19 pm on Nov 17, 2005 (gmt 0)

10+ Year Member



I'm trying to use a 336x280 rectangle ad, and have my text wrap around it, but don't know how.

When I test the page with the JS code, any of my "content" appears below the ad box, instead of wrapped around it (like on other sites).

Any help appreciated.

perldiver

5:30 pm on Nov 17, 2005 (gmt 0)



Try putting the ad code in a table, and set the table to "align=left" or whatever side you want the ad in the text.

LeChuck

5:31 pm on Nov 17, 2005 (gmt 0)

10+ Year Member



add this to your css:
.ad {
float:left;
}
.text {
float:left;
}

and make your html something like this:

<div class="ad">adsense code</div>
<div class="text">body text</div>