Changing the text-box background color when it is active

  • Samiullah345
    Asked on March 31, 2016 at 12:38 PM

    Is it Possible to make your Text Box turn Green from White, when someone fills out your form?

    Just Curious.

  • Jan
    Replied on March 31, 2016 at 4:11 PM

    Yes, it is possible to change the background color of the text box when is active.

    Changing the text box background color when it is active Image 1 Screenshot 20

     

    Please use this custom CSS code:

    .form-textbox:focus, .form-textarea:focus {

    background-color: green;

    }

    Here's a guide on how to inject custom CSSHope this helps. Thank you.

  • Samiullah
    Replied on March 31, 2016 at 5:29 PM

    Thanks Very Much!!