I’ve a problem to position a two-dimensional-menue.
It’s in the same row like an image and i want to place it on the bottom of the row. Now it’s placed on the top of the row and looks like this:
Here my code:
<div class="row">
<div class="span2">
<img src="stockpulse.png" class="img-rounded">
</div>
<ul class="nav nav-tabs">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Dropdown<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Action</a></li>
<li><a href="#">Action</a></li>
</ul>
</li>
<li class="dropdown">
...
</ul>
</div>
It should look like this:
Header with a dropup menue showing the subcategories on a subsite:
Is it right to use a dropdown menue in a navbar if i want to show the subcategories permanently? Or is a nav in a navbar more useful?
Is this what you were looking for: http://jsfiddle.net/8xa5h/
Basically, all I did was adding a
margin-topto the navbar according to the height of the image.