I want to add a small avatar next to a link in my bootstrap navbar like this:
I am trying to add my image inside the <a>
tags of the link, but this is pushing the link out of line with the other links, because the image is taller than the text of the links.
Here is my HTML
<li><a href="link">
<img class="hidden-xs" src="img">
MIKE
</a>
</li>
Is there a proper way to easily add images to bootstrap nav-bars so that all the links still remain in line?