Trying to change the text color for the hint...

  • jcv1425
    Asked on July 26, 2016 at 7:18 PM

    I am trying to change the color of the hint text.  Can't find the CSS.

     

    Please send me css to make the hint text white. 

     

    Thank you,

  • Elton Support Team Lead
    Replied on July 27, 2016 at 2:52 AM

    Use this:

    ::-webkit-input-placeholder { /* Chrome/Opera/Safari */

      color: pink;

    }

    ::-moz-placeholder { /* Firefox 19+ */

      color: pink;

    }

    :-ms-input-placeholder { /* IE 10+ */

      color: pink;

    }

    :-moz-placeholder { /* Firefox 18- */

      color: pink;

    }

    Just replace the color pink with the color you want and inject them into your form.

    Regards!