I have two banner modules, one to appear on small screens, the other on large ones. But this code doesn't work. Is there something preventing it?
/* Small screens */
@media (max-width: 768px) {
.mobile-only {
display: block;
}
.desktop-only {
display: none;
}
}
/* Large screens */
@media (min-width: 769px) {
.mobile-only {
display: none;
}
.desktop-only {
display: block;
}
}
Miltos