I have an unordered list within a WordPress blog post that will not show the bullets. I’ve tried multiple things to get it to show, but it will not.
Here’s the link (text above the desktop image):
http://www.sherigarvin.com/work-project-3/
Here’s what I’ve tried:
- Removed the ul/ol rule in the css reset
- Added specific ul rule with list-style:disc; & list-style-type:disc; Added list-style:disc; to css reset
- Added general rule to style.css with list-style:disc; & list-style-type:disc;
- Inline style of list-style-type:disc;
Thanks for any help…
I’d suggest adding a
margin-left
to theli
elements, or, possibly, declaring:list-style-position: inside;
(which will place thedisc
inside of the width of theli
element, to demonstrate whether the rule’s applying or not).References:
list-style-type
.list-style-position
.Another thing to look at is to see if you had
display:block
on the css element somewhere. By removingdisplay:block
it will make the list style appear again.Here is an inline style that I used on UL that seemed to work better: