There is a small bug in file <simple-tags-plugin-folder>/ressources/jquery.autocomplete/jquery.autocomplete.css
The following element causes a 404 error for the requested file:
.ac_loading {
background: white url(../images/indicator.gif) right center no-repeat;
}
The line needs to be changed as shown below:
.ac_loading {
background: white url(../../inc/images/indicator.gif) right center no-repeat;
}
Thanks
Vijay Padiyar