Apologies, was a mistake with the css which I previously provided you. If you change:
.col-xs-6 {
width: 50%!important;
}
to:
@media only screen and (max-width: 767px) {
.col-xs-6 {
width: 50%!important;
}
}
That will sort it. Again, you can remove this code after the next update.
– Ed