The following CSS has no effect:
@media (min-width: 767px) {
#x-section-4 .x-column.x-1-1 {
width: 25%;
}
This one works however:
@media (min-width: 767px) {
.x-column.x-1-1 {
width: 25%;
}
But then applies it to the whole page. I just want it to apply to my Section 4.
