Forum Moderators: mack
I've figured out a little on my own using tables and I'd like to be able to place adsense ads along one side of a cell that also has text in it.
I'd like the text above the block of ads to continue to the edge of the cell and the text inline with the block of ads come up to a certain distance from the ads and then wrap to the next line. Then the text should continue on and when it gets below the block of ads, keep going until it reaches the far right side of the cell again, etc., etc.
Can anyone point me in the right direction to learn to do this?
If you place div tags around your adsense code and use a float in your inline style, you should be able to get your text to flow around the area.
Ex.
<table>
<tr>
<td><div style="float:right;">Adsense code</div> Text</td>
</tr>
</table>
There are several other styles you can apply to the div to make it more visually appealing. I would suggest checking out the CSS forums here. There is a ton of great information in there.
I hope this helps a bit more.