Check this article website http://www.articlesbase.com/busines...usiness-wholesale-supplier-online-450796.html What i want on my site is the same as on this article site with the google ads to the right of the content! How do i do this? At the moment my content is below the ads www.themoneykid.com
You need something like this in your .htm file: <div id="GoogleAds"> // Google code </div> <div id="content"> // Your content </div> Then something like this in your .css file: #GoogleAds { width = 200px; float: right; }
Try something like this: Put this in anywhere between the <head></head> tags: <style type="text/css"> .ads { float:right; width: XXX /*Put The Width Of Your Adsense Block Here/* } </style> Code (markup): And then simply ad the following around your present ad code: <div class="adsense"> <--- THIS IS YOUR GOOGLE CODE HERE --> </div> Code (markup):