What is your website? You can place it in tables: <table cellspacing="0" cellpadding="0"><tr><td> -- adsense ad here </td><td> -- content here </tr></td></table>
I think the better solution would be to use <div> or <span> as it's much simpler to implement. For example: <div style = "float: left">AdSense code here</div> <p>Content blah blah blah</p> Code (markup): If you wanted to make it on the right then obviously change the "left" to "right". Also if you want space (margin) between the <div> and the rest of the content you can do this: <div style = "float: left; margin: 15px 10px 5px 0px">AdSense code here</div> <p>Content blah blah blah</p> Code (markup): You should change the values of the margin so it suits your needs. Btw in case you don't know, the margins are listed in the order, top (15px in example), right (10px), bottom (5px) and left (0px). Hope that helps Hodge