Viewing 1 replies (of 1 total)
  • Plugin Author girish.tiwari

    (@girishtiwari)

    Hi,

    The image can be wrapped into div or span and also can assign custom class (by default this is set to none). For e.g. [wp-image-refresh container=”div” container_class=”image-class”]. Then you need write custom css (using media query) to hide it on mobile.

    For e.g.

    @media screen and (max-width: 767px) {
    .image-class {
    display: none;
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘How do I hide this on mobile/responsive version of site?’ is closed to new replies.