Using the bootstrap creative theme, I am attempting to create a list of points with the md-bootstrap check fa icon.
Here is how it currently appears:
https://i.sstatic.net/7cgbG.jpg
My goal is to center the text on the page while aligning the start of each sentence to the left so that they begin at the same vertical position and also have the fa-check icons aligned accordingly.
When attempting to do this with ul tags, I faced similar issues as the theme did not style ul elements.
This is the code I used with the creative theme classes:
<div class="text-center">
<p class="text-muted mb-1 text-center"><i class="fas fa-check text-right"></i> this sentence is longer than the 2nd sentence.</p>
<p class="text-muted mb-5 text-center"><i class="fas fa-check text-right"></i> this sentence is shorter.</p>
</div>