Sorry, I am a newbie in both PHP and CSS...
I am trying to change Evolve (WordPress) theme to make it 8 columns on a frontpage but since this theme is using Bootstrap with 12 grid system, I cannot manage to create 8 even columns. I'm changing the file called basic-functions.php
and I don't know what (and where can I do to have 8 even columns).
switch ( $BoxCount ):
case $BoxCount == 8:
$BoxClass = 'col-md-2';
break;
default:
$BoxClass = 'col-md-3';
endswitch;
I can understand that when the $BoxClass = 'col-md-2';
, then I will have 6 columns in a row and under another 2 columns...
Now, it looks like this:
How can I make 8 columns in a row? (with or without gap)?