I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to sp
Here is the solution
Number nested ordered lists in HTML
All you have to to is change a little bit here
ol li:before { content: counter(level1) " "; /*Instead of ". " */ counter-increment: level1; }
^^