I’m using Twitter Bootstrap and I’m having some weird using when hovering over a btn-primary button.
This is my code :
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav nav-pills">
<li class="active">
<a href="#">Home</a>
</li>
<li><a href="#">...</a></li>
<li><a href="#">...</a></li>
<li><a href="#" class="btn btn-primary btn-small">
<i class="icon-user icon-white"></i> Log In
</a>
</li>
</ul>
</div>
</div>
</div>
And this is what happens :
before

on hover

Any ideas why this could be happening?
2 solutions,