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.photo-resources.com/page.php?id=1">The Story</a>
<a href="http://www.photo-resources.com/page.php?id=2">Press</a>
<a href="http://www.photo-resources.com/contact.php">Contact</a>
</div>
<!--2nd drop down menu -->
<div id="dropmenu2" class="dropmenudiv">
<a href="http://www.photo-resources.com/members/user_account_add.php">Join Cool Photo Ideas</a>
<a href="http://www.photo-resources.com/members/index.php">Log In</a>
<a href="http://www.photo-resources.com/page.php?id=3">Consumer FAQ</a>
<a href="http://www.photo-resources.com/search.php">Advanced Search</a>
<a href="http://www.photo-resources.com/page.php?id=6">Articles</a>
<a href="http://www.photo-resources.com/sitemap.php">Sitemap</a>
</div>
<!--3rd drop down menu -->
<div id="dropmenu3" class="dropmenudiv">
<a href="http://www.photo-resources.com/compare.php">Get Listed</a>
<a href="http://www.photo-resources.com/members/index.php">Log In</a>
<a href="http://www.photo-resources.com/page.php?id=7">Why List With Us</a>
<a href="http://www.photo-resources.com/page.php?id=3">Article Program</a></div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
</body>
Bookmarks