Title: Create ordered list
Last modified: March 30, 2020

---

# Create ordered list

 *  Resolved [monicharm](https://wordpress.org/support/users/monicharm/)
 * (@monicharm)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/create-ordered-list/)
 * Hi, I am trying to create an ordered list `<ol>`.
    I put the `<li></li>` codes
   in the Elementor Custom Skin loop template. That part does work (using pods).
   Now trying to get the `<ol></ol>` codes in the custom archive template, but cannot
   get that to work.
 * Any ideas? Thank you!
 * Monique
    -  This topic was modified 6 years, 2 months ago by [monicharm](https://wordpress.org/support/users/monicharm/).
    -  This topic was modified 6 years, 2 months ago by [monicharm](https://wordpress.org/support/users/monicharm/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [dudaster](https://wordpress.org/support/users/dudaster/)
 * (@dudaster)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/create-ordered-list/#post-12605012)
 * Currently doesn’t work with different wrapping tags. But you need to know that
   every widget adds their wrapping div and so on so I don’t know how it will work
   in a list.
 *  Thread Starter [monicharm](https://wordpress.org/support/users/monicharm/)
 * (@monicharm)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/create-ordered-list/#post-12609004)
 * I managed throug CSS! Found the solution here: [https://www.w3schools.com/cssref/pr_gen_counter-reset.asp](https://www.w3schools.com/cssref/pr_gen_counter-reset.asp)
 * Create a counter (“my-sec-counter”) and increase it by one for each occurrence
   of the <h2> selector:
 * `body {
    /* Set “my-sec-counter” to 0 */ counter-reset: my-sec-counter; }
 * h2::before {
    /* Increment “my-sec-counter” by 1 */ counter-increment: my-sec-
   counter; content: “Section ” counter(my-sec-counter) “. “; }

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Create ordered list’ is closed to new replies.

 * ![](https://ps.w.org/ele-custom-skin/assets/icon.svg?rev=3536751)
 * [ECS - Ele Custom Skin for Elementor](https://wordpress.org/plugins/ele-custom-skin/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ele-custom-skin/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ele-custom-skin/)
 * [Active Topics](https://wordpress.org/support/plugin/ele-custom-skin/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ele-custom-skin/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ele-custom-skin/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [monicharm](https://wordpress.org/support/users/monicharm/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/create-ordered-list/#post-12609004)
 * Status: resolved