1

Would someone be kind enough as to point me in the right direction to remove this annoying, ugly yellow highlights that browsers seem to display in your beautifully designed input fields?

I'd like to remove it from all major browsers.

Thank you so much!

Richard.

enter image description here

Richard Rodgers
  • 617
  • 1
  • 7
  • 17
  • it's because you have saved your details on the browser cache – AVI Feb 15 '17 at 23:42
  • This might help: http://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete – bejado Feb 15 '17 at 23:43

1 Answers1

-1

try the following in css:

input[type="text"]
{
    background:white;
}
  • 1
    Thanks for replaying, that's not what I'm looking for. The background is already set to white. However, the browser automatically recognizes that you visited this website before knows which username and password you used so it places the credentials in there along with that yellow background. – Richard Rodgers Feb 15 '17 at 23:48
  • @RichardRodgers Alright. I got it. You are looking for change in color after auto-complete. Sorry, I got it wrong. – Tajveer Singh Nijjar Feb 16 '17 at 00:01