Hi Folks!
Somehow the given font color doesn’t show correctly in the contact form.
Placed the following in the child theme style.css
#top .main_color .input-text,
#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’],
#top .main_color textarea,
#top .main_color select {
background:none;
border:#b844cf solid 1px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
color:#b844cf !important;
}
Did i miss something?
Hey Ivo,
I believe that you are referring to the placeholder text color, in this case please add this css:
::-webkit-input-placeholder {
color: #b844cf !important;
}
:-moz-placeholder {
color: #b844cf !important;
}
::-moz-placeholder {
color: #b844cf !important;
}
:-ms-input-placeholder {
color: #b844cf !important;
}
Best regards,
Mike