Hi,
I am using Icon stack and added following code in Theme Options > CSS to have different look of CF7 messages but still all messages of Contact Form 7 are displaying with yellow color background :
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
color: #D8000C;
background-color: #FFBABA !important;
border: 0;
padding: 10px;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
color: #4F8A10;
background-color: #DFF2BF !important;
border: 0;
padding: 10px;
}
div.wpcf7-mail-sent-ok:before,div.wpcf7-validation-errors:before {
font: 26px/30px FontAwesome;
margin-right: 16px;
vertical-align: middle;
}
div.wpcf7-mail-sent-ok:before {
content:'\f00c';
}
div.wpcf7-validation-errors:before {
content:'\f057';
}
Please kindly guide me to solve this issue.
Thanks in advance.