Thread Starter
evkid
(@evkid)
Now I got it. I noticed an .apost ul in my theme’s stylesheet. I simply added list-style-type: disc and the bullets now show up only in my posts. The final code looks like this:
.apost ul {
padding-left: 50px;
list-style-type: disc;
}
I also did not remove:
ul {
list-style: none outside;
}
Thread Starter
evkid
(@evkid)
Both ways did not allow for bullets to shop up in my posts.
Thread Starter
evkid
(@evkid)
Thanks for reply. Don’t I need to use
.apost {
list-style-type: disc;
}
Since I want to be able to use bullets in my posts?