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

dddave’s picture

Status: Active » Needs work
Trejkaz’s picture

I'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.

Status: Needs work » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.