your code is fine, just add the property "float:left" into your "body" CSS code.
I am seeing you are using all available space for your ad. You may want to format the size of the te "div" tag, to a lesser size, such as the size of the ad.
For the rest of the code i.e the content place the "float:right" property to their CSS code.
Example:
Quote:
CSS Code
#ad
{
float:left;
width:120px;
height:600px;
}
#content
{
float:right;
width:520px;
}
|
And for the HTML
Quote:
<div id="ad">
<Your adsense code>
</div>
<div id="content">
<Any other content>
</div>
|
Using this example, the ad will be at the left and content at the very right. Also by setting "content" to float:left will also put the code at the right of the ad because the ad code is first.