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

Hi @miltos,
Currently, your banner module is appearing above the header. Do you want the banner module to remain above the header when viewed on mobile?

    cssyeah

    I have placed different banners in different positions, as a test. I have given two classes (one for small and one for large screen), so that I can control which screens they appear on. My problem is that the css I have made for them does not work and I cannot figure out what is wrong.
    Miltos

    Hi,
    Please use the following classes for two your modules.

    • Show on mobile and hidden on large screen:
      class="d-block d-lg-none"
    • Hidden on mobile and show on large screen:
      class="d-none d-lg-block"

    @"cssyeah"
    it works fine. Thank you
    Miltos

    Write a Reply...
    You need to Login to view replies.