Forums

[resolved] How do I get rid of the numbers next to my comments? (7 posts)

  1. brittanywigand
    Member
    Posted 2 years ago #

    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

  2. binni_77
    Member
    Posted 2 years ago #

    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

  3. whooami
    Member
    Posted 2 years ago #

    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.

  4. binni_77
    Member
    Posted 2 years ago #

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

  5. whooami
    Member
    Posted 2 years ago #

    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 { ...

  6. whooami
    Member
    Posted 2 years ago #

    2nd way:

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

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

  7. brittanywigand
    Member
    Posted 2 years ago #

    I just edited the style.css... I'm still a quote "newbie" & afraid to mess with php files. :(

    But it worked! Thanks. <3333333333333333333333

Topic Closed

This topic has been closed to new replies.

About this Topic