How do I get the profile image (see picture) to be say 25/30px without distorting the navbar?
This is what I have now:
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<img src="http://placehold.it/18x18" class="profile-image img-circle"> Username <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fa fa-cog"></i> Account</a></li>
<li class="divider"></li>
<li><a href="#"><i class="fa fa-sign-out"></i> Sign-out</a></li>
</ul>
</li>
this is the result:
But if I change the size of the image to 30x30 this is what happens, how do I prevent the distortion of the navbar:
I tried clearing the margin and paddings on the image but that had no effect.
Update: Here is a JSFiddle of the current code.