Whenever I try to center a numbered list, the numbers do not center with the text. I can't get the numbers to center with everything. How can I do this? Please see screenshot
// Original align to center
<ol>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
<li style="text-align: center;">asdasd</li>
</ol>
// Replace these following code
// Just need to add extra css style code in the following
// list-style-position: inside
<ol>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
<li style="list-style-position: inside; text-align: center;">asdasd</li>
</ol>