Hi There,
I have an ordered list where I decorate the running counter with brackets (1), (2) etc...
I use li:before in a generally recommended way of styling such custom lists.
Problem occurs when I attempt to nest such lists in regular ol's:
HTML looks like this:
PDF looks like this:
Any ideas why the items in the nested list are being taken into account while numbering the top level list? Some sort of counter-reset issue? I've attached my testcase...
Kind Regards,
-Mark
I have an ordered list where I decorate the running counter with brackets (1), (2) etc...
I use li:before in a generally recommended way of styling such custom lists.
Problem occurs when I attempt to nest such lists in regular ol's:
HTML looks like this:
1. item1
2. item2
3. item3
(1) nested item1
(2) nested item2
(3) nested item3
(4) nested item4
5. item5
PDF looks like this:
1. item1
2. item2
3. item3
(1) nested item1
(2) nested item2
(3) nested item3
(4) nested item4
9. item5
Any ideas why the items in the nested list are being taken into account while numbering the top level list? Some sort of counter-reset issue? I've attached my testcase...
Kind Regards,
-Mark