Hard to say without actually seeing the page. But what I would try is, using a text only editor like NotePad, adding z-index to the positioned items in the splitmenubuttons.css file, additions highlighted, three places. Scroll the code block to make sure you see all three. (You will find this section near the end of the file):
Code:
.rightarrow:after{ /* CSS for right arrow inside splitdropdown */
content: '\25b8'; /* Add HTML entity based right arrow */
position: absolute;
z-index: 3000;
right: 5px;
font-size: 16px;
height: 100%;
}
/* ##### CSS for UL Drop Down Menus of script ###### */
ul.splitdropdown, ul.splitdropdown ul{ /*topmost and sub ULs, respectively*/
font: normal 13px Verdana;
margin: 0;
padding: 0;
position: absolute;
z-index: 3000;
display: none;
left: 200px;
top: 0;
list-style: none;
background: white; /* background color of drop down */
border: 1px solid lightgray;
border-bottom-width: 0;
box-shadow: 0 0 8px #818181; /*shadow for CSS3 capable browsers.*/
-webkit-box-shadow: 0 0 8px #818181;
-moz-box-shadow: 0 0 8px #818181;
}
ul.splitdropdown li{
position: relative;
z-index: 3000;
}
Bookmarks