M
M
marsep2014-10-25 13:04:56
css
marsep, 2014-10-25 13:04:56

Bootstrap 3: Is it possible to disable responsiveness based on screen size?

Good afternoon!
Is it possible to disable automatic adaptation in Bootstrap 3 for different screens, i.e. I don't want the blocks to automatically adjust to fit the screen size. Is it possible to do it according to the classics, when you need to use scrolling on a smaller screen? Adapting to many devices is good, but I don't have time to fix the design in this case, so I need to start with only normal and large screens.
Thanks in advance!

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexander Sydorenko, 2014-10-25
@marsep

Hello!
You can, you need to put in your styles

.container {
    width:980px !important; // например
}

well, for grid use only classes .col-xs-*
Example
Read

S
Sergey Novikov, 2014-10-25
@BOOMER_74

Use customization , or rewrite the styles manually. You can use the col-xs-* classes.

D
Dmitry Khristoev, 2014-10-25
@Haoss

How to disable page
responsiveness Omit the viewport mentioned in the CSS docs
Rewrite width in .container; for each grid level, specify one value, such as width: 970px !important; Make sure this segment comes after the main Bootstrap CSS. You can also avoid !important with media queries or selector-fu.
Disable minimizing/restoring navbars if they are in use.
Grid templates can use .col-xs-* classes in addition to or instead of medium/large. Don't worry, the very small mesh scales to any resolution.

V
Vadim Guk, 2015-09-02
@Stiflerus

But the forms will still adapt...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question