I'm using twitter Boostrap, my navbar look this way :
<li><a href="#"><i class="icon-bar-chart"></i>
<span class="hidden-tablet">MyTitle</span></a>
</li>
When I'm trying to replace the href with an anchor, my Bootstrap icon is no longer aligned with MyTitle (not on the same line).
here is what I've tried :
<li><?php echo anchor('mycontroler','MyTitle')?><i class="icon-bar-chart"></i>
<span class="hidden-tablet"> </span>
</li>
Any clues ?