In your anylinkmenu.css file you have:
Code:
.anylinkmenu{
position: absolute;
left: 0;
top: 0;
margin-top: 5px;
visibility: hidden;
border: 1px solid 4e3d0d;
border-bottom-width: 0;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #93b24a;
width: 175px; /* default width for menu */
}
That's invalid and IE is reading it as 4000px for some strange reason. I think it sees it as an exponential value. Doesn't matter. Change it to:
Code:
.anylinkmenu{
position: absolute;
left: 0;
top: 0;
margin-top: 5px;
visibility: hidden;
border: 1px solid #4e3d0d;
border-bottom-width: 0;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #93b24a;
width: 175px; /* default width for menu */
}
And things should be fine.
Bookmarks