Using Bootstrap tooltip with HTML and looking to customize it.
<span rel="tooltip" data-toggle="tooltip" data-trigger="hover" data-placement="right" data-html="true" data-title="{$some_html}">test</span>
I am trying to align the text inside the tooltip to the left. I have tried using:
.tooltip-inner {
text-align: left!important;
}
However, this solution doesn't seem to be working for me. Any suggestions?