I am trying to place adsense deluxe im wordpress my page template so it shows up on the right hand side within the post. How would I do this and where would I place the code block? http://winthemarket.com/internet-marketing-guide Thanks
Wrap your AdSense Deluxe tag in span tags like this: <span style="float:right;padding:4px;"><!--adsense1--></span> put the code in the page content where you want the ad to appear. Or, do it with your CSS: <div class="ad1"><!--adsense1--></div> .ad1 {float:right; padding:4px;} put the code in the page content where you want the ad to appear. Add the line below it to your CSS.