In regards to the "z-index" tip I posted, by giving elements a "z-index" you are essentially layering them on the page. If item "a" has a z-index of "1", and item "b" has a z-index of "2", and they are positioned in the same space... Then item "b" will be visible and item "a" will be hidden beneath it.
Your submenus don't have any z-index value set to them, and when they drop down they are dropping "behind" the thumbnails beneath the menu. To fix this, add a z-index to the submenu items. Find the following piece of code in your stylesheet [styles.css (line 448)] and add the portion that I have highlighted.
Code:
#ul_rollOverMenu2 li {
-x-system-font:none;
color:#F6CB48;
cursor:default;
font-family:verdana;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:bold;
line-height:normal;
margin:0;
padding:0;
position:relative;
text-align:left;
z-index:1000;
}
Bookmarks