1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to remove input background filling after autocomplete in Chrome

Discussion in 'HTML & Website Design' started by ketting00, Nov 11, 2022.

  1. #1
    Hi guys,

    Thank you for your help so far. I've achieved pretty much what I intended to do.
    However, there's one more problem.
    When I choose to use autocomplete in Chrome, the input field as filled with background color and blocked the visibility of background image. This isn't happened in Firefox.

    Can you guys find the attached image and give me any idea how to fix or disabled it. I've searched the internet for a clue without any luck.

    Thanks in advance,
     

    Attached Files:

    ketting00, Nov 11, 2022 IP
  2. adSellerMarketing

    adSellerMarketing Peon

    Messages:
    10
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    3
    #3
    <input type="text" name="Name" placeholder="First Name" autocomplete="off">

    OR if you want only the background:

    https://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete

    /* Change the white to any color */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    }

    /*Change text in autofill textbox*/
    input:-webkit-autofill{
    -webkit-text-fill-color: yellow !important;
    }

     
    Last edited by a moderator: Nov 19, 2022
    adSellerMarketing, Nov 19, 2022 IP
  3. ketting00

    ketting00 Well-Known Member

    Messages:
    772
    Likes Received:
    27
    Best Answers:
    3
    Trophy Points:
    128
    #3
    ketting00, Nov 21, 2022 IP
  4. ketting00

    ketting00 Well-Known Member

    Messages:
    772
    Likes Received:
    27
    Best Answers:
    3
    Trophy Points:
    128