Skip to content

Instantly share code, notes, and snippets.

@chancecorbeil
Last active August 29, 2015 14:22
Show Gist options
  • Save chancecorbeil/23131270f925e671bf3c to your computer and use it in GitHub Desktop.
Save chancecorbeil/23131270f925e671bf3c to your computer and use it in GitHub Desktop.
Solid color alerts for Contact Form 7
/* Solid color alerts for Contact Form 7 */
div.wpcf7-mail-sent-ok {
background-color: #398f14;
color: #fff;
border: 2px solid #398f14;
display: inline-block !important;
}
div.wpcf7-validation-errors {
background-color: #f7e700;
border: 2px solid #f7e700;
display: inline-block !important;
}
div.wpcf7-mail-sent-ng {
background-color: #ff0000;
color: #fff;
border: 2px solid #ff0000;
display: inline-block !important;
}
div.wpcf7-spam-blocked {
background-color: #ffa500;
color: #fff;
border: 2px solid #ffa500;
display: inline-block !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment