Reputation: 59
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:
Thanks for any help...
Upvotes: 1
Views: 11555
Reputation: 3932
Another thing to look at is to see if you had display:block
on the css element somewhere. By removing display:block
it will make the list style appear again.
Upvotes: 2
Reputation: 11
Here is an inline style that I used on UL that seemed to work better:
<ul style="list-style-type: disc;
margin-left: 2.5em;
list-style-position: outside;">
Upvotes: 1
Reputation: 253308
I'd suggest adding a margin-left
to the li
elements, or, possibly, declaring: list-style-position: inside;
(which will place the disc
inside of the width of the li
element, to demonstrate whether the rule's applying or not).
ul li {
list-style-type: disc;
margin-left: 1.5em; /* which should give space for the disc to show */
list-style-position: inside; /* will put the disc inside of the li
element, for debugging purposes */
}
References:
Upvotes: 2