Change the colour of the background in the contact form message

Hi,

I would like to know how can I change the colour of the background that appears in the message sent when someone writes in my contact form.

At this moment looks like this:

And instead of green I would like it to be transparent.

Thank you,
Marina.

Hi Marina,

You can change it through custom CSS. Please add this code in X > Theme Options > CSS:

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #dff0d8;
    border-color: #c1dea8;
    color: #468847;
}

Hope this helps.

Thank you!
Last question: how can I put the background transparent?

Hi Marina,

To set the background-color to transparent, you can update the background-color: #dff0d8; to background-color: transparent;

more details about background-color CSS property

Thanks,

Super, it worked!

Thank you,
Marina.

Glad we could help, Cheers!

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