Hi Janice,
you do following steps:
– Open <joomla url>templatesja_leadhtmlcom_contentsectionblog.php file
– Add this code
$items_column = ($this->params->get('num_intro_articles', 4) / $this->params->get('num_columns'));
if ($i + $this->params->get('num_intro_articles', 4) >= $this->total)
$items_column = ($this->total - $i) / $this->params->get('num_columns');
before
$divider = '';
– Replace this code
<?php for ($y = 0; $y < ($this->params->get('num_intro_articles', 4) / $this->params->get('num_columns')); $y ++) :
to
<?php for ($y = 0; $y < $items_column; $y ++) :