Currently, I am using the default theme with Bootstrap 3. I have implemented breadcrumbs as shown below:
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Library</a></li>
<li class="active">Data</li>
</ol>
I am wondering how I can align text properly on the right side of the breadcrumb bar. I have searched through the Bootstrap documentation but couldn't find a solution.
Edit: I do not want to right-align the breadcrumbs themselves. Instead, I am looking for a way to display a separate span of text on the right side of the bar, utilizing what seems like wasted space.