Currently, the tooltip I have is functioning properly:
However, my main requirement is to align it to the right. So, when I use .pull-right
, it appears like this:
This is the HTML code snippet:
<div class="wrapper">Login
<span rel="tooltip"
data-toggle="tooltip"
data-trigger="hover"
data-placement="right"
data-html="true"
data-title="Aenean nibh neque, mattis id diam non, placerat imperdiet urna.">
<span class="glyphicon glyphicon-info-sign pull-right" aria-hidden="true"></span>
</span>
</div>
and here is the tooltip function call:
$('[rel="tooltip"]').tooltip();
Could anyone offer assistance with this? Thank you.