Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #858946

    president75
    Participant

    Hi,

    how do I change the text color and font of text in the contact form (see Annex).

    Thanks again

    #859240

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Thanks.

    #859342

    president75
    Participant
    This reply has been marked as private.
    #859967

    Lely
    Moderator

    Hi There,

    Thank you for the credentials. Please try adding the following CSS on Appearance > Customize > Custom > CSS:

    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: red;
    }
    input:-moz-placeholder, textarea:-moz-placeholder {
    color: red;
    }
    input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: red;
    }

    Change red to your preferred color.
    This link might also help:https://css-tricks.com/snippets/css/style-placeholder-text/

    Always,
    X

    #861132

    president75
    Participant

    Thanks for the reply.

    I tried. But it does not work!!

    Where am I wrong !?

    #861877

    Friech
    Moderator

    Hi There,

    Please update the code to this:

    ::-webkit-input-placeholder {color: red !important;}
    ::-moz-placeholder {color: red !important;}  /* Firefox 19+ */ 
    :-moz-placeholder {color: red !important;} /* older Firefox*/
    :-ms-input-placeholder {color: red !important;}

    And I am seeing a different form than on your screenshot? Is this the correct form?


    screenshot

    Hope it helps, Cheers!