Hello @logoglo,
Thanks for writing in!
Yes, it is possible. To resolve your issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
@media(max-width:979px){
.home #x-content-band-4 .x-column.x-sm.vc.x-1-6 {
width: 30.66666%;
}
.home #x-content-band-4 .x-column.x-sm.vc.x-1-6:nth-child(3n){
margin-right: 0;
}
}
@media(max-width:767px){
.home #x-content-band-4 .x-column.x-sm.vc.x-1-6 {
float: left;
width: 48%;
}
.home #x-content-band-4 .x-column.x-sm.vc.x-1-6:nth-child(2n){
margin-right: 0;
}
}
@media(max-width:480px){
.home #x-content-band-4 .x-column.x-sm.vc.x-1-6 {
float: none;
width: 100%;
margin-right: 0;
}
}
Please let us know if this works out for you.