Tagged: , ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #530970

    Hi

    I want to make the text darker in the fields in my footer (the pre-text – ie before you type in it).

    I cant figure out which CSS is controlling this – only in the footer.

    Please advise.

    http://screencast.com/t/BawMwSo7C

    dev2.electrixinternational.com

    #530986

    Hi richardelectrix!

    Please add following code to Quick CSS

    ::-webkit-input-placeholder,::-moz-placeholder,:-ms-input-placeholder {
        color: #888888!important;
    }

    Cheers!
    Yigit

    #530991

    Hi

    That doesnt appear to work.

    Thanks

    #531046

    Hey!

    Have you tried adding this code to the top of your custom CSS as well?

    Cheers!
    Yigit

    #532582

    Hi

    I hve tried it at the very top of my CSS and it still doesnt work.

    Thanks

    #533965

    Hey!

    Try with this:

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

    Regards,
    Josue

    #535446

    Hi

    That works perfectly.

    Thanks

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Change font color of text in a form before the form is typed in’ is closed to new replies.