• Resolved brittanywigand

    (@brittanywigand)


    I have no idea why my comments are numbering themselves but they are. I don’t think this in style.css anywhere… I’m thinking it’s in a PHP file somewhere.

    My Site: BrittanyWigand.com
    Theme: Silver Dreams

Viewing 6 replies - 1 through 6 (of 6 total)
  • In comments.php file replace this code
    <?php comments_number(‘No Responses’, ‘One Response’, ‘% Responses’ );?>
    which is in line 24
    by
    Responses or any word you want.Try this

    In comments.php file replace this code ..

    uh no, thats not it.

    Open the theme’s comments.php. you will be looking for 2 lines.

    the first one is:

    <ol class="commentlist">

    change that to:

    <ul class="commentlist">

    about 10-15 lines down from that you will find this:

    </ol>

    change that to:

    </ul>

    those changes will cause your style.css to need to be edited. Im working through that right now.

    oh, sorry for i cudn’t understand the question rightly and replied

    edit your style.css. look for the 3 ‘blocks’ that start with :

    ol.commentlist .....

    change all of those to

    ul.commentlist ...

    and add:

    list-style-type:none;

    to the ones that are like this:

    ul.commentlist li { ...

    and :

    ul.commentlist li.alt { ...

    2nd way:

    dont edit the comments.php, and just edit the style.css

    list-style-type:none; works for ordered lists also.

    Thread Starter brittanywigand

    (@brittanywigand)

    I just edited the style.css… I’m still a quote “newbie” & afraid to mess with php files. ??

    But it worked! Thanks. <3333333333333333333333

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How do I get rid of the numbers next to my comments?’ is closed to new replies.