Forum Moderators: martinibuster

Message Too Old, No Replies

Wrap text around large rectangle

         

designaweb

12:20 pm on Sep 1, 2004 (gmt 0)

10+ Year Member



Hi all,

What I am trying to do, is wrap the text of a page around a large adsense rectangle. The text should be on the left, and the adsense block on the right. The text should continue under the adsense as well. With an image the HTML would look like:

TEXT YAYAYAYDADADD text<img src="image.jpg" align="right" />Jajajadadada text test... etc.

But how to do it with a block of adsense code :S

Macro

12:38 pm on Sep 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Put Adsense code in a table and right align the table?

moltar

12:40 pm on Sep 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member




<p>
... text ...
<span style="float: right">... adsense code ...</span>
... text ...
</p>

ronin

1:52 pm on Sep 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Pretty much. Or something like:

<p>...text...</p>
<div style="float:right;">...adsense code...</div>
<p>...text...</p>

Macro

3:34 pm on Sep 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I use an SSI for the Adsense code. Helps if you have a big site.

designaweb

8:29 pm on Sep 1, 2004 (gmt 0)

10+ Year Member



Thanks all, the

<p>
... text ...
<span style="float: right">... adsense code ...</span>
... text ...
</p>

code worked best for me...

@Macro: I use SSI as well, but that doesn't mean you can position it within text the way I wanted to ;)

Never_again

9:26 pm on Sep 1, 2004 (gmt 0)

10+ Year Member



Put Adsense code in a table and right align the table?

This is exactly how we do it.