-1

I am working on this small Bootstrap website and i noticed that on some Laptop at the resolution of 768px it goes responsive. How can change the responsive breakpoint and make it NO responsive at that size?

Here some screenshots

Image 1 enter image description here

j08691
  • 204,283
  • 31
  • 260
  • 272
N_A
  • 19
  • 3
  • 10
  • 1
    Remove the media queries which have the 768 px width as their upper limit. – beerwin Jun 14 '16 at 13:18
  • 2
    Use the same `col- ` value for `md` and `large` .... your containers mus t be `col-md-4` as an example ... Also include your code here other way this question is useless for future readers – DaniP Jun 14 '16 at 13:20

2 Answers2

0

In the customize section of the bootstrap website, you can customize the media query breakpoints, to build a custom bootstrap version where the @screen-sm media query has a breakpoint bigger (or smaller) than 768px.

Raibaz
  • 9,280
  • 10
  • 44
  • 65
0

Refer this link it may help you,How to turn off the responsive feature completely from Twitter Bootstrap 3? Change container class like this, and add this css

.container-non-responsive { margin-left: auto; margin-right: auto; padding-left: 15px; padding-right: 15px; width: 1170px; }

Community
  • 1
  • 1
Mani
  • 2,675
  • 2
  • 20
  • 42