Hello,
I saw this post (now closed) talking about removing the search bar from the drop down box when there are only a few options and it's not needed:
http://www.gravityhelp.com/forums/topic/enhanced-user-interface-search-bar
The solution was to use the following css to hide the search box:
.chzn-search {
display: none;
}
I tried this and it worked, but it removed the keyboard controls from the drop down box it was applied to. I have a couple of others on the same page and I can use the up/down arrows to scroll through options, but when I add the code to one of the boxes, the up/down arrow keyboard navigation is gone.
I tried this and it works fine, but I wanted to see if you recommend a better solution, or if you can see any issues with it:
.chzn-search {
height: 0px;
overflow: hidden;
padding: 0px; !important
}
Thank you!