I would like to disable one of the Responsive layouts. Whatever the second smallest layout is before it switches to the mobile view.
As an improvement to spinningarrow's way to do this when using LESS is to set the @gridColumnWidth768
and @gridGutterWidth768
to match @gridColumnWidth
and @gridGutterWidth
like so:
@gridColumnWidth768: @gridColumnWidth;
@gridGutterWidth768: @gridGutterWidth;
As a rule, I try to leave alone vendor files and only edit them as a last resort. This allows me to fix this issue without having to edit the core bootstrap files.