• I’ve ran a few searches but have no idea what I need to change to fix this. As you can tell, if you look at this post – https://ww2.dark7.org:8080/journal/archives/318 – you can’t see the author/text of the comment because the background isn’t “colored” in. If someone could help me fix this I’d be in debt to you ?? I just don’t even have a clue as to what info you would need to help me. Anyone?

Viewing 2 replies - 1 through 2 (of 2 total)
  • change the colour of the font in the css for comments

    Splunk,

    In your stylesheet, which is located at wp-content/themes/classic/style.css, you’ll find the following chunk of code starting around line 279:

    #commentlist,
    #commentform,
    .post {
    background-color: #D1E3FF;
    border: 1px solid #00C;
    margin: 10px 0px 10px 20px;
    }

    Change the hash (#) in front of commentlist to a period. A hash stands for ID, and your page code is looking for a Class. Of course, it would be easier to just change the code in your comments.php file since commentlist is only called once in each webpage & it’s defined several times in your stylesheet. Look for <ol class="commentlist"> and just replace “class” with “ID”.

    I would also suggest adding ‘.graybox, ‘ (with a space) to every incidence of .storycontent in your stylesheet, but even that won’t likely look “just right” to you. Other changes will get too tedious to explain here.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘comments background, don’t know what to change. :(’ is closed to new replies.