It seems to be the anylink shadow somehow creating the gap. If you don't need the shadow you can get rid of the gap with a css rule like this.
Code:
.anylinkshadow {
display: none;
}
Another way you can fix it is to find the part in your anylinkmenu.css where it says
Code:
.anylinkshadow1{
position: absolute;
left: 0;
top: 0;
z-index: 99;
background: #8c8365;
visibility: hidden;
}
and then remove the 1 (red), like this:
Code:
.anylinkshadow{
position: absolute;
left: 0;
top: 0;
z-index: 99;
background: #8c8365;
visibility: hidden;
}
Bookmarks