I have a layout design clearly made for 1200px / 15 cols framework, but my client wants to use Bootstrap 4 with SASS only. Is it even possible to transform Bootstrap into 15 cols layout? I haven't seen such an example online. I'm not a huge fan of Bootstrap for small projects. It is a trend I honestly don't understand. Might be too heavy for a 5 pages website & projects are usually done according to the content, not according to some framework, Twitter-backed or not.
But, this is it.
If it would be possible to code a 15 cols layout, could you give me a hint on how to begin? And how long would it take to perform such an adaptation?
You just need to change the
$grid-columns
variable using SASS.$grid-columns: 15;
You may also want to check out other variables like
$grid-gutter-width
to decrease the spacing between columns since you're using more columns.Working Demo
Also see:
creating custom grid number for bootstrap - Bootstrap