Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1227539

    Hi there.
    How can I change the COLOR of the INPUT fields placeholder text .input _is _empty?
    Text must be brighter before filling the input fields.

    Any ideas?

    #1227662

    Hey Stephan,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1227789

    Look here, I mean the PLACEHOLDER text in th INPUT fields, should come in a different color or brightness then filling out the fields:

    View post on imgur.com

    #1227794

    Hi,
    Add the following to quick css and adjust the color to what you need:

    ::-webkit-input-placeholder {
        color: #006ec8!important;
    }
    ::-moz-placeholder
    }
        color: #006ec8!important;
    }
    :-ms-input-placeholder { 
        color: #006ec8!important;
    }

    Best regards,
    Jordan Shannon

    #1227891

    This CSS code doesn’t work. I get several error messages.

    #1228031

    Hi,

    Thanks for the update. CSS code doesn’t throw error messages, so I’m not sure what you mean by your last reply? If you can’t give us a link to where we can see the actual elements then we can only give you general code and hope for the best.

    You can try this to see if works better:

    ::-webkit-input-placeholder {
        color: #006ec8!important;
    }
    ::-moz-placeholder {
        color: #006ec8!important;
    }
    
    :-ms-input-placeholder { 
        color: #006ec8!important;
    }

    Best regards,
    Rikard

    #1228294

    Hi there

    CSS Syntax was wrong on line 7 and line 8:
    https://www.imagebanana.com/s/1809/tDcaUcgs.html

    Now, it’s fine, thank you ;-)

    #1228379

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Change color Form INPUT Placeholder EMPTY’ is closed to new replies.