Hello, My question is regarding placement of Google ads. I want to place 300*250 rectangle ads side by side something like in this page http://makemoneyideas.in/ How do I go about it, I am not much into web designing so can't find a way to do it. Any help will be greatly appreciated. Regards, Vinith Almeida
Did you try put both of them inside "div" tags and then using this style: float:left; margin:0px; padding:0px; Or custom how you desire.
Try something like this (replace id values with your own) <style type="text/css"> .adsense300 {float:left;} </style> <div class="adsense300 left"><script type="text/javascript"><!-- google_ad_client = "pub-id-goes-here"; google_ad_slot = "slot-id-goes-here"; google_ad_width = 300; google_ad_height = 250; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div> <div class="adsense300 right"><script type="text/javascript"><!-- google_ad_client = "pub-id-goes-here"; google_ad_slot = "slot-id-goes-here"; google_ad_width = 300; google_ad_height = 250; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div> HTML: