My website has a responsive design based on Twitter's Bootstrap framework.
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<!--Sidebar content-->
</div>
<div class="span10">
<!--Body content-->
</div>
</div>
</div>
I want to make the sidebar a fixed width of 220px. When I change the layout from fluid to "static" and set the width of the sidebar to 220px, the body content jumps under the sidebar when I resize the window or change my resolution to 1024. How can I prevent this?
EDIT: Figured it out. Will share my "solution" later. Thank you for your help!