Make active form hint text white in color?

  • EpicStudio
    Asked on December 3, 2014 at 8:37 AM
    4. Make the active form hint text look white, I already put #ffffff on the css but it doesn't look whit, i don't know why.
  • val
    Replied on December 3, 2014 at 12:25 PM

    Hi,

    Please inject this CSS codes to your CSS form.

    ::-webkit-input-placeholder {
        color: #ffffff !important;
    }
    :-moz-placeholder {
        color: #ffffff !important;
    }
    ::-moz-placeholder {
        color: #ffffff !important;
    }
    :-ms-input-placeholder {
        color: #ffffff !important;
    }
    input:-moz-placeholder { color:#ffffff !important; }

     

    Hope this help!

    Thanks.