Bootstrap menu, include logo

2

I'm using this menu: link Exactly this one from the link, I copied directly from there, the question is , where it says "Project Name", I have to add a logo, how do I do it?

    
asked by anonymous 04.08.2015 / 20:20

1 answer

3

In the part that looks like this:

<a class="navbar-brand" href="#">Project name</a>

Changes to:

<a class="navbar-brand" href="#"><img src="../images/suaImagem.png" width="45px" height="28px"></a>

Where width and height are width and height of the image respectively

    
04.08.2015 / 21:38