Hello!
I did some research and found that i can change the placeholder text color with this CSS. Tested and it works, but it changes all contact form. I only need it to change a specific contact form.
How can i modify it for a specific contact form?
::-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;
}
My contact form id is the follow: wpcf7-f656-p259-o2
Thanks and appreciate it a lot!