Spry Auto Suggest IE6 Bug
Wednesday December 12, 2007 3:19 PM
Word Count: 278
http://labs.adobe.com/technologies/spry/samples/autosuggest/SuggestSample.html
Now that you know what the problem is I would like to share with you the fix that was posted. I found this while digging through the spry forums. To fix the problem simply open up the SpryAutoSuggest.css file and find the class hideSuggestClass. All you hanave to do is add a new z-index property and give it a value of 1011. The default class should now look like this.
<style>
.hideSuggestClass{
border: 2px solid #999999;
background-color: white;
height: 75px;
overflow:auto;
display:none;
width: 250px;
margin: 0px;
cursor: pointer;
z-index: 1011;
}
</style>
.hideSuggestClass{
border: 2px solid #999999;
background-color: white;
height: 75px;
overflow:auto;
display:none;
width: 250px;
margin: 0px;
cursor: pointer;
z-index: 1011;
}
</style>
