This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

CSS to change placeholder text color

CSS to change placeholder text color

Home Forums Product Support Forums Ajax Search Pro for WordPress Support CSS to change placeholder text color

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #8255
    jznashjznash
    Participant

    Hi, love the plugin!

    What is the CSS to change the color of the placeholder text?

    Thanks,

    Josh

    #8261
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Thanks for your kind words!

    To have a different placeholder color, you will need to add the follosing custom CSS code:

    [html]input.orig::-webkit-input-placeholder {
    color: #FFFFFF !important;
    }

    input.orig:-moz-placeholder { /* Firefox 18- */
    color: #FFFFFF !important;
    }

    input.orig::-moz-placeholder { /* Firefox 19+ */
    color: #FFFFFF !important;
    }

    input.orig:-ms-input-placeholder {
    color: #FFFFFF !important;
    }[/html]

    Just change the #FFFFFF value to the desired color value.

    #8266
    jznashjznash
    Participant

    Perfect, thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘CSS to change placeholder text color’ is closed to new replies.