Hello - now that I have switched to PRO, I am working on removing all CSS from my website. Can you help me with an issue I am facing?
For the code below, it takes a specific section on my home page, and condenses it down to be two lines with three badges on mobile. Otherwise, it will be large images. Is there anyway to do this in PRO without the CSS?
*Badges Condensed on Mobile*/
@media(max-width: 979px){
.x-column.x-sm.x-1-6 {
width: 30.33332%;
margin-bottom: 20px;
}
.x-column.x-sm.x-1-6 {
position: relative;
z-index: 1;
float: left;
margin-right: 4%;
}
.x-column.x-sm.x-1-6:nth-child(3),
.x-column.x-sm.x-1-6.last,
.x-column.x-sm.x-1-6:last-of-type {
margin-right: 0;
}
.x-container>.offset {
margin-top: 10px;
}
}