For a current project I am working on, my goal is to fill the entire .container
with 7 columns within my grid system. To achieve this, I plan on adjusting the Less variable (@grid-columns
) before compiling a bootstrap.css file at http://getbootstrap.com/customize/#grid-system.
However, what if I need to revert back to the standard 12 column grid system for another section of the same site?
If I were to create a separate bootstrap.css file while keeping the @grid-columns
at 12, I would run into issues when loading it in a browser because it would conflict with the previously created bootstrap.css. This is due to the fact that both files will contain similar class references such as .col-md-7
.
I am struggling to find a solution to this problem, but there must be a way to address it, right? Or perhaps I am overlooking something.