Hi @DesignMunky,
You mean that it should stay 1 column in mobile and then 2 columns for tablets? Because that’s the only way to gradually change the column counts. And you didn’t provide information to which breakpoints should the column changes. For the meantime, please change that CSS to this
@media ( min-width: 768px ) and ( max-width: 979px ){
.x-colophon.top .x-column.x-md.x-1-4 {
width: 50%;
float: left;
margin-top: 25px;
}
.x-colophon.top .x-column .widget:first-child {
margin-top: 0;
}
}
The CSS means to apply the 2 columns structure for tablets and smaller devices ( except mobile smaller than 768px ).
Thanks!