Thanks… I moved this to the Encounters forum category.
In the theme style.css, the ordered list (the one with the 01, 02, etc) is styled like this:
ol li {
list-style: decimal-leading-zero;
margin-left: 25px;
}
You can override that with a child theme (if using one), or you can use a plugin that lets you edit and create custom css. One plugin you can use is called Simple Custom CSS https://wordpress.org/plugins/simple-custom-css/ But if you are using Jetpack, it has it’s own Edit CSS plugin you can use instead.
Basically you can take the above and make it look like this:
ol li {
list-style: decimal;
margin-left: 25px;
}