• Could you help me to change the color of the comment box?
    my website is http://www.tomaszhueckel.com/
    The bottom has a “leave a reply” section but with white color box. I would change to yellow color to fit the website.
    What’s the CSS code should I add?
    Thanks!!

Viewing 8 replies - 1 through 8 (of 8 total)
  • you can add this style to your child theme

    `form#commentform input {
    background-color: yellow;
    }

    Thread Starter supppi

    (@supppi)

    Thanks, mrtom414!
    But it seems it does not work:((

    try adding !important to the statement
    background-color: yellow !important;

    Thread Starter supppi

    (@supppi)

    Thanks for your help!
    I try it on the CSS style in the theme option. I didn’t know how to use the “child theme”. Is this a problem? (If it is, I’ll learn how to use a child theme)

    P.S. I want to change the color under the “leave a reply”, not the color of the text area.

    h3#reply-title{background-color:yellow;}

    Thread Starter supppi

    (@supppi)

    Thanks, Mr Tom
    I’m sorry i didn’t express clear.
    I mean i want to change the color of the whole blank area surrounding the “leave a reply”, but not the font color, not the fill-in text area.

    The h3#reply-title{background-color:yellow;} change the font of text ” leave a reply”.

    I want to change the color so that there is no white color at the bottom of the website
    http://www.tomaszhueckel.com/

    Thank you!!

    Try:

    #respond {
    background: #F2D22E;
    }
    Thread Starter supppi

    (@supppi)

    Thanks, Stephen.
    That works!!!!
    Awesome

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘change the color of the comment box’ is closed to new replies.