How can I set hint font color

  • howellru
    Asked on March 4, 2015 at 3:02 PM
  • Mike
    Replied on March 4, 2015 at 3:48 PM

    Thank you for contacting us.

    We can inject the following CSS to change the hint font color:

    ::-webkit-input-placeholder {

    color: red;

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

    color: red;

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

    color: red;

    }:-ms-input-placeholder {

    color: red;

    }

    .form-custom-hint {

    color: red !important;

    }

    Where red can be replaced with any HTML color.

    How can I set hint font color Image 1 Screenshot 20

    If you need any further assistance, please let us know.

  • howellru
    Replied on March 4, 2015 at 4:27 PM

    Thanks for the tip. I'll give it a try.