The page I am designing has a fixed header and in the row below it is has two Bootstrap columns, .col-md-2
and .col-md-10
.
I am trying to fix the header to the top of the page and the left column (.col-md-2
) in the row below it to its position, however when I try to set position: fixed;
in the CSS for the header and left column, the entire positioning of my page gets messed up.
Is there any way to safely lock in the position of a column in Bootstrap without throwing off the entire page and maintaining Bootstrap's classic responsiveness?
EDIT: Here is a really, really bad demo but it may give you a better idea of what I'm trying to do. Here is a diagram
The section with HEADER
I want to be fixed to the top, the section with ABOUT ME
I want to be in a responsive column fixed to the left, and the section with POST
I want to be in a responsive, not fixed column to the right that allows for scrolling.
One of the problems with the solution I have now is when I try to decrease the browser-width all of the text in the column to the right gets smushed down and doesn't act like a Boostrapped column would at all.