• Resolved cutrano

    (@cutrano)


    Hello…
    I’m working with different forms and I have a recurring issue. When I populate the fields of a form with data that has populated the field on another form submission it changes the background color of the form field.

    If I populate those same files with data thats never been submitted in those foiled the color stays the same.

    Whats happening and how do I correct it so it doesn’t change colors on me

    Have a look at the form called “Request our Enlighten Analytics
    Sample Analysis” on the page https://enlighten-analytics.com

    Thank you so much.
    David

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @cutrano

    That is a browser’s autocomplete functionality. The browser applies its own CSS for the input for which autocomplete is selected.

    You can add the following CSS to remove that:

    input:-webkit-autofill, 
    input:-webkit-autofill:hover, 
    input:-webkit-autofill:focus, 
    input:-webkit-autofill:active {
        -webkit-transition-delay: 99999s;
        background-color: transparent;
    }
    Thread Starter cutrano

    (@cutrano)

    Jainil..that did it. Thank you so much. I would have never considered that as the solution I was not looking in that area of css.

    • This reply was modified 4 years, 11 months ago by cutrano.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Input field colors’ is closed to new replies.