After several searches on the web, I can't find the solution for my needs. So maybe any of you can helpmeto find the good way to do it.
Pretty much, I would like to use Bootstrap to make a template structure similar to this one: http://themes.mediacreed.com/html/synergy/#portfolio.html
Do you think that Bootstrap can do it? Cheers
OK, after more search on the web, I've found this solution:
HTML
<!-- Begin Side Nav -->
<div class="sideNav">
<h5>item</h5>
</div>
<!-- End Side Nav -->
<!-- Begin Main Content -->
<div class="content">
<!-- here the content........ -->
</div>
CSS
.content
{
overflow: hidden;
position: absolute;
top: 0px;
bottom: 0px;
left: 100px;
right: 0px;
padding: 0px 10px;
overflow: auto;
}
.sideNav
{
padding: 10px 0;
position: fixed;
left: 0px;
top: 0px;
bottom: 0px;
width: 100px; /* same as .content left */
background-color: #fff;
border-right: 1px solid #000;
z-index: 1020;
}
This code is inspired from http://jsfiddle.net/whoiskb/GqXdM/light/ (but I've just keep the essential)
Hope it can help