Contact form colour of the letter

Hi,

I would like to know:

*If is possible to edit the colour the customer use when they write their message? as now it is a grey and I would like it black
*Is it possible that the line I have for entering the message, email and name changes of colour when your entering your data, so interacting with it.

Here is my website:

Thank you,
Marina.

Hello Marina,

To do that, please find this code:

.wpcf7 textarea, .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
    background-color: transparent;
    border: 0;
    border-bottom: solid 1px black;
    border-radius: 0;
    height: 35px;
}

then update it to:

.wpcf7 textarea, .wpcf7 input[type="text"], .wpcf7 input[type="email"] {
    background-color: transparent;
    border: 0;
    border-bottom: solid 1px black;
    border-radius: 0;
    height: 35px;
    color: #000;
}

then add this code in the Global CSS:

.wpcf7 textarea:focus, 
.wpcf7 input[type="text"]:focus, 
.wpcf7 input[type="email"]:focus {
    border-color: blue;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.