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
  • 667
  • 6
  • 20

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,367
  • 5
  • 35
  • 47