Hey, brilliant theme.

I came across the following "bug" in the css code for ordered lists:

#content .content ol li {
list-style: decimal;
margin-left:30px;
}

should rather be:

#content .content ol li {
list-style: inherit;
margin-left:30px;
}

Although not strictly speaking a bug, specifying decimal makes all ordered lists decimal values even if HTML code for roman numerals, etc. is added. So instead of "c" or "iii" only "3" will display.

Using the local.css file with inherit fixes this for firefox but not IE.

Comments

NaheemSays’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.