Disable Media File Image Link On Mobile Devices
You can easily do this using HTML and CSS. You can write 2 blocks of div for the same image and toogle display:none; properties in CSS using media queries as shown below. Note: I have remove the “a href” tag for mobile. <!–HTML Start –> <div class=”image-grid desktop”> <a href=”#”><img src=”#” /></a> <div> <!–For Mobile … Read more