0
Well here’s the thing, first of all I’m sorry the question is a bit dumb, yet I’m new to bootstrap.
What I want to do is a menu on the left side and another menu on the right side.
How can I do that?
Thank you.
0
Well here’s the thing, first of all I’m sorry the question is a bit dumb, yet I’m new to bootstrap.
What I want to do is a menu on the left side and another menu on the right side.
How can I do that?
Thank you.
1
If the menu is fixed try to perform this way: (attention to col-Sm-X, x should close 12 when adding the elements)
<div class="row">
<div class="col-sm-3">Lista 1 aqui</div>
<div class="col-sm-6">Conteúdo central</div>
<div class="col-sm-3">Lista 2 aqui</div>
</div>
Browser other questions tagged bootstrap-3
You are not signed in. Login or sign up in order to post.
Your menu is in the style of
navbar
? (http://getbootstrap.com/components/#navbar)– Pagotti