My knee-jerk reaction is to suggest that you try using a CSS plugin – or if your theme has a User added CSS option – and add .input {color: #000;} to the CSS and see if that changes anything. Just a guess, mind you. The best thing to do might be to ask directly in the support channel provided for your particular theme. Especially if you are using the commercial version.
Hello, @claytonjames !
It worked like a charm! I just added it to styles.css and it worked. Thank you so much.
Do you also have smart solution for the “placeholder” text under “Plasser” and “Land”?
A solution to get them black as well?
Hey,
You can use the following CSS to change the color of the placeholder text:
::-webkit-input-placeholder {
color: #909;
}
:-moz-placeholder {
color: #909;
opacity: 1;
}
::-moz-placeholder {
color: #909;
opacity: 1;
}
:-ms-input-placeholder {
color: #909;
}
You may change the color according to your need.
Hope this helps!
Hello @wbcomdesigns
Unfornately that didnt work. Any other ideas?
You can change the dropdown selection box and Submit button colors by using this CSS code too:
select,
#em-booking-submit {
color: #000;
}
Just add this to your Child Theme style.css file, or by using a Custom CSS plugin.
Hope this helps.