Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Remove Bullets From Budypress

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #194706
    Erik
    Participant

    For the life of me I can’t get these bullets removed from Buddypress.

    I went through everything and just can’t figure it out.

    They’re above image for group and the tabs.

    Page link: HERE

    #194713
    Paulie_D
    Member

    It’s not a bullet…it’s a pseudo-element

    media="all"
    .post-content ul li:before {
      content: "2022";
      position: absolute;
      left: 0;
      top: 0;
      color: #dd3333;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 700;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.25;
    }
    

    c. Line 1491 of the CSS file

    Hot Tip: You could have found this using ‘inspect element’ in your developer tools

    #194716
    Erik
    Participant

    Thank you, I did use the ‘inspect element’… still have a lot to learn.

    Thanks for telling me about that.. never worked with pseudo-element stuff.

    I only ever looked at the basic CSS.

    #194717
    Paulie_D
    Member

    Thanks for telling me about that.. never worked with pseudo-element stuff.

    No, problen, we love pseudo-elements on CSS-Tricks…there’s so many amazing things you can do with them.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.