It's a CSS z-index issue- the default z-index of the slideshow is greater than that of the menu, thus overlapping it. Inside dropdown.css, try adding the code in red to the pertinent code below:
Code:
/*----------- Navigation -----------------*/
.chromestyle{
width: 100%;
font-weight:bold;
font-size: 12px;
float: right;
z-index:2000;
position:relative;
}
.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: ".";
display: block;
clear: both;
visibility: hidden;
}
.chromestyle ul{
width: 100%;
padding: 12px 0;
margin: 0;
text-align: right; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li{
display: inline;
}
.chromestyle ul li a{
color: #F90;
padding: 4px;
margin: 0;
text-decoration: none;
}
/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:2000;
background: url(yellowbkg.gif) center;
background-color: white;
width: 200px;
visibility: hidden;
}
Bookmarks