Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #218345

    GreenLemonCompany
    Participant

    Hi

    My site is http://www.greenlemoncompany.net

    On my contact us page I have created a form and tried to change the text color to white for the forms submission boxes. Description box is still the original color so wondered what I have missed. I used this in the custom CSS

    }
    select, textarea, input[type=”text”], input[type=”password”], input[type=”datetime”], input[type=”datetime-local”], input[type=”date”], input[type=”month”], input[type=”time”], input[type=”week”], input[type=”number”], input[type=”email”], input[type=”url”], input[type=”search”], input[type=”tel”], input[type=”color”], .uneditable-input {
    color: white;

    Is it possible to change the background of the form boxes to white instead of changing the text, this would be preferred option.

    Loving the theme by the way!!!!!

    Thank you….

    #218455

    Thai
    Moderator

    Hi There,
    Thanks for writing in!
    Try adding following CSS under Appearance > Customize > Custom > CSS:

    .ccf-form input,
    .ccf-form textarea {
    color: #555 !important;
    background-color: #fff !important;
    }

    Hope it helps.

    #219075

    GreenLemonCompany
    Participant

    Brilliant thank you.

    Another question – I hope how do add text shadow to all text on the site please?

    #219236

    Thai
    Moderator

    Hi There,
    Please take a look at this article: http://www.w3schools.com/cssref/css3_pr_text-shadow.asp
    After that. try adding the follow CSS like below:

    
    body {
    text-shadow: 2px 2px #ff0000;
    }
    

    Hope it helps.