Change the autocomplete selection area? It looks fine when there are a lot of choices to choose from, but when there are only one or two selections it blends in with the grid. Can this be changed using CSS?
Thanks in advance.
-Tim
1 Answers
You can set any background color using following css:
<style>
ul.ui-autocomplete {
background: #efefef;
}
</style>
Your Answer