Lets say I have a simple list like so:
- one
- two
&l
Here you go:
https://jsfiddle.net/Cheese1991/qnmhvvxj/
HTML:
- One
- Two
- Skip
- Three
- Four
CSS:
ul {
counter-reset:yourCounter;
list-style:none;
}
ul li:not(.skip) {
counter-increment:yourCounter;
list-style:none;
}
ul li:not(.skip):before {
content:counter(yourCounter) ". ";
}
ul li.skip:before {
content:"\a0\a0\a0";
}
I hope this will help you