Reputation:
On this page: http://catonthecouchproductions.com/fish/boat-captain.html I have a list on the bottom right box in yellow, but it is not displaying as a list-style-type:circle, but i have it set in my CSS.
I am not sure why it is acting this way. Any ideas?
I have FireBug installed and it doesn't seem like anything is conflicting with it.
Upvotes: 0
Views: 174
Reputation: 11
I had the same problem, when floating li. As soon as I removed float from li element, the circles in ul showed up in IE7.
Upvotes: 0
Reputation: 126155
Another detail, that I saw: your <ul>
element has list-style-type:disc;
and the <li>
elements list-style-type:circle;
. This property should only be declared for the <ul>
element.
Upvotes: 0
Reputation: 75862
You haven't left any space for the circle to display - try margin:1px 10px;
on the ul li instead
Upvotes: 1
Reputation: 321776
You need to add a left-margin
to li
to get them to show up.
ul li { margin-left: 10px; }
should do it
Upvotes: 2
Reputation: 18880
list-style-type:circle;
should be defined for the ul and not the li.
Upvotes: 0