Good day.
Can I extend the Bootstrap grid somehow? The largest width is 1170px .col-lg-
but many templates do not match this width, that is, I have a 1200px layout, and a Bootstrap grid is 1170px
How to get out of this situation?
Yes, you can specify the required size on the Bootstrap settings page in the @container-large-desktop
field.
In your case, it will do ((1170px + @grid-gutter-width))
, provided that the amount of indents @grid-gutter-width
is specified as 30px
.
Source: https://ru.stackoverflow.com/questions/545734/
All Articles