Thanks to SO I was able to find out how to style the Google Autocomplete dropdown. I have changed the default marker to:
.pac-icon {
background-image: url(images/marker_greyed.png);
background-position:center;
background-repeat:no-repeat;
background-size:16px 20px;
border:none;
}
This is working great to change the icon. However, I'm facing an issue with good old IE, in that the marker is slightly blurred for the first few suggestions:
Compare this to Chrome:
Does anyone know what I can do to sharpen the background image in IE? I've tried pre-loading the image, thinking that it's maybe because the image is hidden on page load, but this isn't working either.
Many thanks!