I have a section with two rows. Using the “Hide During Breakpoints” settings one row is set to be hidden from 767px down, i.e. the first two device icons are activated. The second row is set to be hidden on devices 767px and above, i.e. the three last device icons are activated.
The resulting CSS is as follows:
@media (max-width: 767px) {
.row-1.x-hide-sm {
display: none;
}
}
@media (min-width: 767px) and (max-width: 978px) {
.row-2.x-hide-md {
display: none !important;
}
}
The above CSS results in both rows being hidden at 767px. Is this a bug or am I missing something?
Cheers.
Brendan