Hi adminet,
Normally the leading articles can only be displayed in one column, that’s the default joomla feature, To get the intro articles showing in two columns you can try as following
Open the file of templates/ja_elastica/css/layout-wide.css look for this css rule and remove it
.cols-1 .item, .cols-2 .item, .cols-3 .item, .cols-4 .item, .cols-5 .item {
width: 100% !important;
}
Then you open the file of templates/ja_elastica/css/layout.css looking for this css
.cols-2 .item {
width: 50%;
}
Change it to
.cols-2 .item {
width: 50% !important;
float:left;
}
I hope that would help !