• Resolved big-opera

    (@big-opera)


    the color of the text in the comments form fields, such as name, et cetera are a very light yellow on a white background making it virtually impossible to see.
    I’ve search around the various CSS items but so far haven’t been able to find out where this input text is styled.

    http://www.thealchemist.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • open your theme style.css (line 219)

    find

    #commentform #email, #commentform #author, #commentform #url {
    color: #660000;
    font-size: 1.1em;
        background: #eee;
        border: 1px solid #300000;
        width: 180px;
    }

    if u need readable text you could replace the above code with the following

    #commentform #email, #commentform #author, #commentform #url {
    background-color: #fff;
    border: inherit;
    color:#000;
    font-size:1.4em;
    font-style:normal;
    font-weight:400;
    letter-spacing:1px;
    padding:6px;
    width: auto;
    }

    Thread Starter big-opera

    (@big-opera)

    thanks very much for your assistance!

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

The topic ‘comments form input fields’ is closed to new replies.