Well, here's the first one I apologize for the question being a bit dumb, but I'm a bootstrap novice.
What I want to do is a menu on the left side and another menu on the right.
How can I do this?
Thank you.
Well, here's the first one I apologize for the question being a bit dumb, but I'm a bootstrap novice.
What I want to do is a menu on the left side and another menu on the right.
How can I do this?
Thank you.
If the menu is fixed try to do this: (attention to col-sm-X, x must close 12 when adding the elements)
<div class="row">
<div class="col-sm-4">Lista 1 aqui</div>
<div class="col-sm-6">Conteúdo central</div>
<div class="col-sm-4">Lista 2 aqui</div>
</div>