I have my page structured into 3 different modules: navigation on the left, images in the center, and social sidebar right. Below is the css that formats this content. I'm having trouble when I resize the window; the images in the center overlap with the navigation on the left and the sidebar gets pushed to the bottom of the page and overlaps with the end of the left navigation. The navigation module/sidebar is fixed.I'm using twitter bootstrap as a base.Any ideas on what's causing this and how to fix this?css\[code\]div.sidebar{ width: 120px; position:fixed; top:12%; left:2%; overflow-y:auto; height:100%;}\[/code\]html\[code\] <div class ="container-fluid"><div class = "row-fluid"><!-- left navigation div --> <div class = "span1" style = "width:120px;"> <div class = "sidebar" > #navigation </div> </div><!-- middle images div --> <div class = "span8" style = "width: 900px;"> #lot of images </div> <!-- social sidebar --> <div class = "span2" style = "margin-left: 10px; "> #social module with images </div></div></div>\[/code\]when I make the window smaller
normal