Hi!
I see a styling conflict between the two boxes, naturally it is not clickable.
In the template style.css file (themes/fimage/css/style.css) the lines for ajax search pro need some modification:
/* For Pro Ajax Search */
input.orig {
text-transform: uppercase;
padding-top: 0;
margin-top: 0;
height: 1em;
color: #ccc;
}
Change it to:
/* For Pro Ajax Search */
input.orig, input.autocomplete {
text-transform: uppercase;
padding-top: 0;
margin-top: 0;
height: 1em;
color: #ccc;
}
This should place the autocomplete field back to it’s normal position, because it needs the exact same styling as the original field.
Let me know how it goes!