• Resolved notkelsey

    (@notkelsey)


    I know how to remove bullet points from regular unordered lists, but how do I remove them from my nested comments? As you can see, on my website notkelsey.com, bullet points will show up next to the author’s name in replies.

Viewing 5 replies - 1 through 5 (of 5 total)
  • I am guessing you will need to set in your “style.css” the “.children” class to not have bullets.

    You will probably need to put something like this to make it work:

    ul.children {
          list-style: none;
    }

    I just took a quick look at your code and hopefully works for what you are trying to do.

    When i look at the element ispector of google chrome, i see the browser user agent stylesheet adds display:list-item; maybe add display:block; to your .odd class in your css?

    I hope this fixes it!

    Thread Starter notkelsey

    (@notkelsey)

    Thanks! display:block; seems to have fixed it ??

    You’re welcome ??

    Thread Starter notkelsey

    (@notkelsey)

    Ah, actually, I used .children {list-style: none;} When I changed the odd class’s attributes, I had every other comment being displayed without bullets rather than just the nested replies.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove bullet points from comments?’ is closed to new replies.