Forgot to add that I’m using an Attorney child theme.
Hi Stephen. I figured out the solution. In style.css, I changed the content attribute to none in the code shown below:
.post_content ul li::before {
content: none;
position: absolute;
left: 0px;
top: 0px;
color: #C7930D;
font-family: Arial,Helvetica,sans-serif;
font-weight: 700;
font-size: 16px;
}
Then I added this to get regular square bullets for unordered lists:
.post_content ul li {
list-style-type: square;
list-style-position: outside;
}
I hope this helps others who encounter the same problem.