The Simple Gallery is contained inside a a relatively positioned DIV, which gives it precedence stacking wise relative to non positioned elements on your page. You can try setting your menu's container to relative as well, and give it a high CSS z-index to see if that fixes the issue. Inside your HEAD section, you can try adding something like this:
Code:
<style type="text/css">
#nav{
position:relative;
z-index:2000;
}
#nav li ul{
z-index:2000;
}
</style>
BTW, please note that your page is currently in violation of our usage terms, since the credit notice doesn't appear inline on the page. Please reinstate the credit notice: http://www.dynamicdrive.com/notice.htm
Bookmarks