Hello, I'm a beginner with jquery and currently experimenting with the autocomplete feature. I managed to change the font of the dropdown list successfully but struggling to do the same for the input field itself. Does anyone know how to achieve this?
Thanks in advance.
.ui-autocomplete.ui-widget {
font: 400 1.5em/125% 'Sofia', Helvetica, Sans-serif;
cursor: default;
height: 200px;
overflow-y: scroll;
}
.ui-autocomplete.ui-menu{
font: 400 1.5em/125% 'Sofia', Helvetica, Sans-serif;
}
#input autocomplete {
font: 400 1.5em/125% 'Sofia', Helvetica, Sans-serif;
}
.input{
font: 400 1.5em/125% 'Sofia', Helvetica, Sans-serif;
}