Hello,
I have this code that changes the newsletter color in the footer (to white):
input::-webkit-input-placeholder,input.form-control::-webkit-input-placeholder {
color: #fff;
}
input:-moz-placeholder,input.form-control:-moz-placeholder {
color: #fff;
}
input::-moz-placeholder,input.form-control::-moz-placeholder {
color: #fff;
}
input:-ms-input-placeholder,input.form-control:-ms-input-placeholder {
color: #fff;
}
But the funny thing is that it also changes the color of the first two labels in the contact form (so they are white and barely visible)
How can i divide the color?
Thank you,