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 Reply To: [Solved] Remove Bullets From Budypress

#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