I used the code below to make the widgets go two per row on medium mobile widths.
@media (min-width:481px) and (max-width: 979px) {
.x-column.x-md {
float: left;
width: 48%;
margin-right: 4%;
}
.x-column.x-md:nth-child(2n),
.x-column.x-md.last,
.x-column.x-md:last-of-type {
margin-right: 0;
}
}
I found this in another forum, but it didn’t work for some reason.
.x-colophon.top #custom_html-3 {
margin-top: 0;
}
Any advice?
