Answer the question
In order to leave comments, you need to log in
How to increase the number of columns in Bootstrap?
Good afternoon. Please tell me how to increase the number of columns of records. At the moment there are 3 of them, but 4 need to be done. I will provide part of the code (marked in bold):
<div id="content" class="maga-site-content container">
<div id="maga-module-0" class="maga-module module-type-posts maga-module-layout-combo">
<div class="row maga-posts ">
<b><div class="col-lg-5 col-md-6 col-sm-12 layout-combo"></b>
Answer the question
In order to leave comments, you need to log in
standard 12 column grid
12/3 = 4
use col-lg-3 to get 3 | 3 | 3 | 3
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div id="content" class="maga-site-content container">
<div id="maga-module-0" class="maga-module module-type-posts maga-module-layout-combo">
<div class="row maga-posts ">
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
<div class="col-lg-3 col-md-6 col-sm-12 layout-combo"> ... </div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question