UPDATE: Issue resolved by placing the code after the </h1> of the header title for wordpress. I have a website that I am working on temporarily before getting the actual domain for the site. The issue I am having is the code below is not allowing the mouse to show a hand for it to indicate that you can click on it. Here's the Adsense code: <div style="float:right;margin-right:90px;"> <script type="text/javascript"><!-- google_ad_client = "pub-5982412235867454"; /* 468x60, created 11/03/10 */ google_ad_slot = "7968898475"; google_ad_width = 468; google_ad_height = 60; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> Code (markup): Any suggestions on this so I can keep it floating right and having an active link inside the banner for people to click on it?
Try This: <div style="float:right;margin-right:90px; border:0;"> <a href ="link here"> <script type="text/javascript"><!-- google_ad_client = "pub-5982412235867454"; /* 468x60, created 11/03/10 */ google_ad_slot = "7968898475"; google_ad_width = 468; google_ad_height = 60; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </a> </div> Code (markup):