How do I put a column next to another bootstrap

0

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.

    
asked by anonymous 22.05.2017 / 08:04

1 answer

1
  

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>
    
30.05.2017 / 22:58