Raise the z-index for the three selectors that have them in the anylinkcssmenu.css file. These occur (with suggested changes shown) here:
Code:
.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-bottom-width: 0;
font: normal 12px Verdana;
line-height: 18px;
z-index: 10000; /* zIndex should be greater than that of shadow's below */
background: lightyellow;
width: 200px; /* default width for menu */
}
here:
Code:
.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 12px Verdana;
z-index: 10000; /*zIndex should be greater than that of shadow's below*/
background: #DEFFCA;
}
and here:
Code:
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 9999; /*zIndex for shadow*/
background: black;
visibility: hidden;
}
Bookmarks