In module configuration section, set "Item count" is 8:
This image is hidden for guests. Please log in or register to see it.
Edit templates/jf_taman/html/mod_k2_content/News/default.php, modify:
<li class="<?php echo ($key%2) ? "odd" : "even"; if(count($items)==$key+1) echo ' lastItem'; ?>">
to:
<li class="<?php echo ($key%2) ? "odd" : "even"; if($key%4 == 0) echo ' clearLeft'; if(count($items)==$key+1) echo ' lastItem'; ?>">
Edit templates/jf_taman/css/template.css, add:
#jf-bottom-content div.k2ItemsBlock ul li.clearLeft {
clear: left;
}
joomfreak