how to change the font inside jquery ui combobox and the dropdown list my code is:
.ui-autocomplete-input {
margin: 0;
padding: 0.3em;
font-family:"Times New Roman", Times, serif;
}
.ui-autocomplete
{
font-family:"Times New Roman", Times, serif;
max-height: 200px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
/* add padding to account for vertical scrollbar */
z-index:1000;
}
but nothing change I don't know where is the error