You wouldn't have happened to have upgraded to IE 7 in the meantime, would you? In any case, your page looked fine in IE 6. In IE 7, both it and the demo page had the problem you describe.
I added this below the style for a local demo:
Code:
<style type="text/css">
#showimage{
position:absolute;
visibility:hidden;
border: 1px solid gray;
}
#dragbar{
cursor: hand;
cursor: pointer;
background-color: #EFEFEF;
min-width: 100px; /*NS6 style to overcome bug*/
}
#dragbar #closetext{
font-weight: bold;
margin-right: 1px;
}
</style>
<!--[if IE]>
<style type="text/css">
#dragbar{
min-width:auto;
}
</style>
<![endif]-->
Works here.
Bookmarks