Try adding below css code to override.css enable css override option in template settings > advanced settings > css override "on".
This would only effect when resolution or viewport is 960px or higher as it might not look correct in smaller devices as this kind of mod requires changes to k2 style files.
- Code: Select all
@media only screen and (min-width: 960px){
.itemListView .itemImageBlock {
float: left;
width: 49%;
}
.itemListView .itemBody {
float: right;
width: 49%;
}
.itemView .itemImage {
width: 49%;
}
.itemView .itemAsideInfo {
width: 45%;
}
.itemView .itemBody {
float: right;
margin-top: -265px;
position: relative;
right: -10px;
top: 0;
width: 50%;
}
}