Viewing 5 replies - 1 through 5 (of 5 total)
  • 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.

    Thread Starter pusur333

    (@pusur333)

    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!

    Thread Starter pusur333

    (@pusur333)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Input text color change’ is closed to new replies.