This is a z-index style issue. The slide show operates at about z-index 1000. Your drop downs must be above that. I suggest 10000.
Find (in your markup) the selector for the root of the navigation, the id or class of it's container, often this is something like id="menu" or id="navigation".
Use it like so in your stylesheet:
Code:
#navigation, #navigation * {
position: relative;
z-index: 10000!important;
}
Place that before any other declarations for the menu.
This doesn't always work, but does in most cases. If you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks