0

I am new to bootstrap and css. I want to split whole page into 2 parts, left part looks like a sidebar which has fixed width and doesn't respond to browser window sizing.

Now I am using grid system:

.row
   .col-xs-4  //left part
       .row
       .row
       .row
       .row
   .col-xs-8  //right part
       .row
       .row

However since grid system is responsive so when I resize browser window, left part's width also changes.

codewarrior
  • 723
  • 7
  • 22
  • 1
    See question [Bootstrap 3.0 - Fluid Grid that includes Fixed Column Sizes](http://stackoverflow.com/questions/19231742/bootstrap-3-0-fluid-grid-that-includes-fixed-column-sizes) – Alexanderp Nov 01 '16 at 19:25
  • Fixed side can use pixels, responsive side can use %. –  Nov 01 '16 at 20:04

1 Answers1

0

I'd suggest keeping the left menu out of the Bootstrap grid system and using pure CSS to do it.

Rok Povsic
  • 4,626
  • 5
  • 37
  • 53