I have a card that uses size 3 for col-lg. But I want a different behaviour for monitors 1920x1080 and 1366x768. But both are still col-lg.
For example:
- col-1g-2920x1080 = col-IgG
- col-1g-1366x768 = col-IgG
<div class="catalogo">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12 col-xs-12">
</div>
</div>
</div>
You can do same as you were doing earlier but need to download the bootstrap 4 sass file and reset lg grid breakpoint from _variables.scss file to 1080px like this
and recompile the entire source to get new custom bootstrap CSS file. and use it like this.
This is the file you need to change. https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss
But as a developer this is not recommended. But of course, it is possible if you deliberately want to achieve such kind of design.
Bootstrap 3 uses less preprocessor I believe it's variable.less contain @screen-sm: 768px; @screen-md: 992px;@screen-lg: 1200px; no xl so you can edit according to your need and recompile it. I think this should work.
You can use CSS media queries to differentiate between the two screen sizes:
E.g.: