I had a similar issue which was rectified recently but it seems to has caused other issues. I want to have the following:
1, 2, 3, IMAGE, 4, 5, 6
I set the start value for the second list as 4 but it is being ignored for some reason. Here is my current code:
.entry-content .list-container {
counter-reset: my-awesome-counter;
}
.entry-content ol {
list-style: none;
margin-left: 1px;
}
.entry-content ol li::before {
content: counter(my-awesome-counter) ") ";
margin-right: 2px;
font-size: 19px;
font-weight: 600;
}
.entry-content ol li {
margin-bottom: 40px;
margin-top: 45px;
counter-increment: my-awesome-counter;
overflow: hidden;
}
I can fix the current situation by tweaking the start to this:
.entry-content .list-container, .entry-content {
counter-reset: my-awesome-counter;
}
However, this then ruins other lists I may have on the page (some pages have more than one list that should each start at 1.