Dear pikiame,
Please go to your_site/templates/sj_worldnews/css/template.css and find:
div.userItemView, div.tagItemView {
border: medium none;
float: left;
margin: 0;
padding: 0;
width: 50%;
}
=>
div.userItemView, div.tagItemView {
border: medium none;
float: left;
margin: 0;
overflow: hidden;
padding: 0;
width: 25%;
}
and
div.userItemList > div:nth-child(2n+1), div.tagItemList > div:nth-child(2n+1) {
clear: both;
overflow: auto;
}
=>
div.userItemList > div:nth-child(4n+1), div.tagItemList > div:nth-child(4n+1) {
clear: both;
overflow: auto;
}
Thanks