Joanna – what is the link to your blog page?
The file is in /wp-content/themes/dante/includes/sf-blog.php
You need to edit the PHP function called: sf_blog_items()
. This entire PHP function needs to be copied into your child theme file called functions.php
once you have installed and activated it.
Within the sf_blog_items()
function you can change the column settings:
if ($blog_type == "mini") {
$item_class = "col-sm-12";
} else if ($blog_type == "masonry") {
if ($sidebar_config == "both-sidebars") {
$item_class = "col-sm-3";
} else {
$item_class = "col-sm-4";
}
} else if ($blog_type == "masonry-fw") {
$item_class = "col-sm-3";
} else {
$item_class = $width;
}