This topic has 1 reply, 2 voices, and was last updated 8 years by Radu.

  • Author
  • #110270
     adw259
    Participant

    Do you have any css code for changing the placeholder text color in the sign-up form because by default it is not very visible or readable?

    #110482
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .form-search.custom input[type="text"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:red !important;
    }
    
    .form-search input::-moz-placeholder {
        /* FF 4-18 */
        color: red;
    }
    .form-search input::-moz-placeholder {
        /* FF 19+ */
        color:: red;
    }
    .form-search input:-ms-input-placeholder {
        /* IE 10+ */
        color: red;
    }
    
    .form-search.custom input[type="password"]::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:red !important;}
        
    .form-search.custom input[type="password"]::::-moz-placeholder {
        /* FF 4-18 */
        color: red;
    }
    

    Replace red with your desired color.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?