Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I remove those damn dots (bullets)

  • @stuudio

    Participant

    For some reason, I can not get rid of those damn bullets.
    http://www.oostuudio.ee/wp-content/uploads/2013/08/65-bbpres_fkn_bullets.jpg
    (I added red marks so you can see the problematic dots/bullets)

    I am using bbPress 2.3.2 (installed as plugin via WP admin)

    I wasted hours with FF and Chrome dev tool but did not get anywhere.

    I am no css master but I was expecting this to fix the problem:

    #bbpress-forums ul {
    list-style: none outside none;
    }
    #bbpress-forums li {
    list-style: none outside none;
    }

    I was wrong. It has no effect at all.

    So, I need your help to fix this because I can not launch a forum, looking like this: http://www.oostuudio.ee/foorum/f/poletamine/

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • @tecca

    Participant

    These are being taken from your site’s CSS (non-bbPress side):

    ul ul li:before
    ul li:before

    Those are the culprits. Add this to your bbPress.css file:

    ul ul li:before {
        display: none;
    }
    
    ul li:before {
        display: none;
    }

    Or remove them altogether from your site’s CSS if you don’t need them.

    @stuudio

    Participant

    It is so cool, when people know what they are doing 🙂
    I was going grey here 🙂 Nothing worked.

    Cheers and thank you Tecca

    PS! this can be marked as “Resolved”

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar