Most of the positioning problems with the drop down menus can be solved by making sure the HTML for the drop down DIVs themselves is outside any container tag on the page other than the BODY. So in your case, try moving all the drop down DIVs to the bottom of your page, just above the "</body>" tag:
Code:
<!--1st drop down menu -->
<div id="dropmenu1" class="dropmenudiv">
<a href="http://www.smallgroupresources.net/about-smallgroupresources.html">About Us</a>
<a href="http://www.smallgroupresources.net/contact-us.html">Contact Us</a>
<a href="http://www.smallgroupresources.net/whattheysay.html">What They’re Saying</a>
</div>
<!--2nd drop down menu -->
<div id="dropmenu2" class="dropmenudiv" style="width: 150px;">
<a href="http://www.smallgroupresources.net/free-small-group-ministry.html">Small Group Ministry Assessment</a>
<a href="http://www.smallgroupresources.net/the-small-group-fraternit.html">The Small Group Fraternity</a>
<a href="http://www.smallgroupresources.net/coaching-launching-a-heal.html">Launching a Healthy Small Group Ministry</a>
<a href="http://www.smallgroupresources.net/coaching-building-an-effe.html">Building an Effective Coaching Structure</a>
<a href="http://www.smallgroupresources.net/developing-a-dynamic-smal.html">Developing a Dynamic Small Group Culture</a>
<a href="http://www.smallgroupresources.net/consulting-services.html">Consulting</a>
<a href="http://www.smallgroupresources.net/custom-small-group-curric.html">Custom Curriculum</a>
</div>
<!--3rd drop down menu -->
<div id="dropmenu3" class="dropmenudiv" style="width: 150px;">
<a href="http://markhowell.typepad.com/marks_blog/">Blog</a>
</div>
<!--4th drop down menu -->
<div id="dropmenu4" class="dropmenudiv" style="width: 150px;">
<a href="http://markhowell.typepad.com/smallgroupresources/findresources.html">Store</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
</body>
Bookmarks