Skip to content

Instantly share code, notes, and snippets.

@metelidrissi
Created September 17, 2019 15:05
Show Gist options
  • Save metelidrissi/aecf7b1b512b3c4bb5846efe94e456dd to your computer and use it in GitHub Desktop.
Save metelidrissi/aecf7b1b512b3c4bb5846efe94e456dd to your computer and use it in GitHub Desktop.
Cambiar el color del placeholder en Contact Form 7 con CSS
::-webkit-input-placeholder { /* WebKit browsers */
color: #000 !important;
opacity: 1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #000 !important;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #000 !important;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #000 !important;
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment