Floating dropdown for autosuggest
Posted: Thu Apr 02, 2009 8:29 pm
Hi guys,
I'm not as adapt with CSS as I am with PHP. I'm trying to style an autosuggest textfield so that the drop down it produces overlaps other fields/contents. AS it is now when the auto suggest is triggered...the dropdown usually shifts everything out of place.
my CSS thus far looks like...
whats the best way to do this?
I'm not as adapt with CSS as I am with PHP. I'm trying to style an autosuggest textfield so that the drop down it produces overlaps other fields/contents. AS it is now when the auto suggest is triggered...the dropdown usually shifts everything out of place.
my CSS thus far looks like...
Code: Select all
.hide{ border: 2px solid #999999; background-color: white; height: 75px; overflow:auto; display:none; width: 250px; margin: 0px; float:left; cursor: pointer; z-index: 1011; position:absolute; clear:none;}.show{float:left; z-index: 1011; position:absolute; clear:none;display: block !important;}