I\'m trying to design an Admin panel for my application using twitter-bootstrap framework but i cannot get my layout to work.
I was inspired by this design:
I'm not so sure Bootstrap's grid model is what you're looking for here. You may instead be looking for absolute positioning. For example:
#sidebar, #content { position: absolute; top: 0; bottom: 0; } #sidebar { left: 0; width: 10em; } #content { left: 10em; right: 0; }
Try it out.