Hi, how can I make the font colors in the contact form fields to be white?
its allways better to see the link.
But do you mean the real inputed text or the place-holder text in the field ?
tip for placeholder-text:
::-webkit-input-placeholder {
color: pink !important;
}
::-moz-placeholder {
color: pink !important;
}
:-ms-input-placeholder {
color: pink !important;
}
:-moz-placeholder {
color: pink !important;
}
Both would be great.
post deleted, sorry, my mistake
you must replace pink than with #fff :lol
to change it globaly: it is on Enfold Options Dialog: Main Content secondary font color
the rest will work with attribute selektor
#top .main_color input[type="text"],
#top .main_color input[type="input"],
#top .main_color input[type="password"],
#top .main_color input[type="email"],
#top .main_color input[type="number"],
#top .main_color input[type="url"],
#top .main_color input[type="tel"],
#top .main_color input[type="search"]
depends on the field you like to change
and something important to Firefox
all placeholders have transparency – to avoid this:
::-moz-placeholder {
opacity: 1 !important;
}
Hi,
CSS Tricks that can save lifes! :D
Best regards,
Basilis