Hello, I'm having trouble with my web site in dreamweaver. I created a site out of html and css that has a fixed header. The problem I'm having is that the google ad (which is javascript) that is placed in its own div scroll over the fixed header. I need it to scroll under the fixed header. Is this something that I need to change in the CSS of the header or the div, or is this something that I need to adjust in the javascript code of the ad? Any feedback is greatly appreciated. Thank you.
Here is the CSS for the header:
#nav {
height: 100px;
width: 100%;
top: 0px;
left: 0px;
position: fixed;
background-color: #000000;
}
Here is the CSS for the div that contains the google ad:
#adone {
width:300px;
height: 275px;
margin-right: 10px;
margin-top: 5px;
}
Here is the javascript for the ad:
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1000551524447618";
/* New World Dank 2012 */
google_ad_slot = "0428886617";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>