Closed (fixed)
Project:
Arthemia
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Jun 2009 at 20:05 UTC
Updated:
27 Jun 2009 at 20:30 UTC
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
Comment #1
naheemsays commentedThanks!
Fixed in http://drupal.org/cvs?commit=224976