Find this code in components/com_content/content.php (mambo version 4.5.2.1):
Code:
if ( $leading ) {
echo '<tr>';
echo '<td valign="top">';
for ( $z = 0; $z < $leading; $z++ ) {
if ( $i >= $total ) {
// stops loop if total number of items is less than the number set to display as leading
break;
}
echo '<div>';
show( $rows[$i], $params, $gid, $access, $pop, $option, $ItemidCount );
echo '</div>';
$i++;
}
echo '</td>';
echo '</tr>';
} then replace by this code:
Code:
if ( $leading ) {
echo '<tr>';
echo '<td valign="top">';
for ( $z = 0; $z < $leading; $z++ ) {
if ( $i >= $total ) {
// stops loop if total number of items is less than the number set to display as leading
break;
}
echo '<div>';
show( $rows[$i], $params, $gid, $access, $pop, $option, $ItemidCount );
echo '</div>';
$i++;
}
echo '<br>';
mosLoadModules( 'banner', -1 ); // insert banners or images here
echo '</td>';
echo '</tr>';
}