The original CSS style sets the padding of ALL li-elements to 0, even if the li-element belongs to an unordered list inside an ordered list.
The result is that the items of the unordered lists overwrite the bullet sign.
for more information see: http://drupal.org/node/441466
PATCH:
# line 130, original:
ol li {
padding: 0 0 .3em;
margin-left: 2em; /* LTR */
}
# patched version of line 130:
ol > li {
...
Comments
Comment #1
dddave commentedhttp://drupal.org/patch/create
;)
Comment #2
Trejkaz commentedI'm seeing this too. The suggested fix worked for me, but looking at the other rules in the area, I am not confident that there won't be similar bugs with all other list styles. It looks like the original theme developer was very liberal with omitting the ">" on all their rules, whereas usually (for the sake of sanity) it is a better idea to put ">" everywhere until you find a reason not to.