I need help with some extra indentation that is appearing under an ordered list I have created. I want to eliminate the extra spacing to achieve a cleaner look. This is how I want it to appear:
https://i.sstatic.net/O7cyG.png
However, it currently looks like this:
https://i.sstatic.net/SRRJF.png
Is it possible to completely justify the list format? I have checked Bootstrap's documentation but couldn't find a solution. Can this be achieved at all?
My HTML code is fairly simple. For the first desired result, I just have a paragraph tag:
<div class="text-justify">
<p class="grey-text"> 1. Applicable rules...<br><br>2. Definitions..</p>
</div>
And for the second result, I am using:
<ol>
<li> Applicable rules...</li>
<li> Definitions...</li>
</ol>