• need to change placeholder color to grey because I changed the background to white. This is not working:

    div.asl_w {background-image: none !important;}
    .probox {background-color: #fff !important; background-image: none !important;}
    .promagnifier {background-color: #9ad9ea !important; background-image: none !important;}
    div.asl_r.vertical {background: #d2ebf3 ;}
    #ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input {color: #000 !important; font-weight: bold;}
    #ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input placeholder {color: #444;}
    • This topic was modified 3 years, 10 months ago by jsquared.
Viewing 1 replies (of 1 total)
  • Plugin Author wpdreams

    (@wpdreams)

    Hi,

    Placeholders need to be targeted with different CSS rules. This should work:

    input.orig::placeholder {
        color: red !important;
    }
    input.orig:-ms-input-placeholder {
        color: red !important;
    }
    input.orig::-ms-input-placeholder {
        color: red !important;
    }

    Best,
    Ernest M.

Viewing 1 replies (of 1 total)
  • The topic ‘Chacnge placeholder color’ is closed to new replies.