Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I remove those damn dots (bullets)

Viewing 2 replies - 1 through 2 (of 2 total)

  • Tecca
    Participant

    @tecca

    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

    @stuudio

    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