/* Clear formatting of current numbering */
ol {
  list-style: none;
}
/* Show counter */
ol li:before {
  counter-increment: contentscounter;
  content: counter(contentscounter) ". ";
}
/* Reset count only on first ol */
ol:first-of-type {
  counter-reset: contentscounter;
}
ul li { list-style:none; }