Hi,
I have 4 column on desktop and want to convert them into 2 column on mobile for particular row. It has been successful by creating this “stay-inline” class on global custom css:
@media (min-width: 321px) and (max-width: 767px) {
.stay-inline .x-column {
float: left !important;
width: 48% !important;
margin-right: 4% !important;
}
.stay-inline .x-column:last-child,
.stay-inline .x-column:nth-child(2n) {
margin-right: 0 !important;
}
But it doesn’t look nice since there’s no padding on the left or right as in the picture, i want to make padding in the left or right, so the column will be look equal.
Kindly help how to modify this css.
Thank you.

Best,
Rendy

