Is it possible to add a logo to my navbar without causing it to extend downward? I have been struggling with this issue and need some guidance on how to fit the logo into the navbar seamlessly.
Below is the code snippet that I have been working with:
<body>
<header class="navbar navbar-fixed-top navbar-inverse">
<div class="container">
<%= link_to image_tag("image.png", alt: "logo"),
'/' %>
<%= link_to "...", '#', id: "prov" %>
<nav>
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "example1", '#' %></li>
<li><%= link_to "example2", '#' %></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<%= yield %>
</div>