Hi,

I have installed CKeditor v 6.x-1.13 and find that the nested numbered lists and bullets are not working properly.

i.e.

1. item a
1. sub item of a

What this should be it:

1. item a

1.1 sub item of a

1.2 sub item of a

Could you please let me know how to achieve this.

Thank very much in advance!

Comments

damiaan’s picture

Hello,
If you want these nested numbering lists, you need to add the following code to your CSS style sheet:

ol {
	counter-reset: item;
}
li {
	display: block;
}
li:before {
	content: counters(item, ".") " ";
	counter-increment: item
}

I hope this helps
Damiaan

Jabastin Arul’s picture

Issue summary: View changes

Thanks damiaan. Its work for me.