Home › Forums › CSS › [Solved] Remove Bullets From Budypress › Reply To: [Solved] Remove Bullets From Budypress
January 30, 2015 at 10:04 am
#194713
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