Pop up contact form

Hello,

How to change pop up contact form text input color? And also field highlight color? http://nvado.com/

Comments

  • Hi,

    you can change these colors with the following css:
    input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, select:focus, textarea:focus {
        background-color: red !important;
        border-color: #d01855 !important;
        color: #000;
    }
  • Hi,

    How to change text-selection color?

    image
  • To change it's color, you must use the following css:
    input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, select:focus, textarea:focus { color: #FFF !important; }
  • Hi,

    How can I change this color only on Pop up contact form? Because when I use your following css this color changes on all pages, even on woocommerce pages? I need this following css only on Pop up contact form. 
  • Do you mean the form which is located under the popup button in the right bottom corner?
Sign In or Register to comment.