<!--
Source - https://stackoverflow.com/a/31218704
Posted by Pro Dev, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-24, License - CC BY-SA 3.0
-->

  /* if desktop */
    .mobile_device_380px {
        display: none;
    }
    .mobile_device_480px {
        display: none;
    }

    /* if mobile device max width 480px */
    @media only screen and (max-device-width: 480px) {
       .mobile_device_480px{display: block;}
       .desktop {display: none;}
    }