Here's the issue I am facing - while using prototype and scriptaculous (although jquery may have the same problem), I have a list of draggable images within a div that is relatively positioned. The challenge arises when I try to drag these images out of the parent div; they are dragged out, but remain invisible. Removing the position:relative from the parent div resolves this issue, allowing me to drag items out successfully. However, due to a known bug in IE7 explained here: , it is necessary to keep position:relative. Is there an alternate solution to work around this bug without changing the positioning?
I have tried adjusting z-index and attempting various solutions, all to no avail. Below is the CSS for the box:
#products{
width: 680px;
height: 400px;
border: 1px solid gray;
/*background-color: #66FF00;*/
overflow-y: scroll;
overflow-x: hidden;
font-family:"Helvetica Neue","Helvetica";
font-size:12px;
font-weight:bold;
position: relative;
}
If you wish to observe this bug in action, you can visit the following link: . Try searching for an item such as "gloves" and adding it to the cart below. Thank you for any assistance provided.