0

I was wondering if it's at all possible to style the autocomplete box that appears from input fields.

( I know This question is the same but that doesnt have a answer and since its a few months old i figured i made a new post about it)

Screenshot

That image is of my login screen with the autocomplete box being all square and bulky compared to my input field. If it's not possible to style the box i'll simply turn autocomplette off but if it's at all possible i would be very interested.


New screenshot: enter image description here

Community
  • 1
  • 1
Marco Geertsma
  • 803
  • 2
  • 9
  • 28

2 Answers2

2

Yeah you can't do that since it's browser based. Here's a great example in jQuery that uses autocomplete. I use it all the time for sites - super slick.

http://www.devbridge.com/sourcery/components/jquery-autocomplete/

rmarq423
  • 195
  • 1
  • 8
1

You can't modify the browsers' native functionality. Your best option is to find a plugin that overrides the autocomplete drop-down functionality and modify the code and style to your liking. Please take a look at jQuery's autocomplete plugin. http://jqueryui.com/autocomplete/#custom-data

Tyler
  • 21
  • 1