• This plugin is fantastic on my desktop. However, I have written over my image which causes problems when the image scales down to mobile devices. Is there a way I can simply hide this feature image on all mobile devices.

Viewing 1 replies (of 1 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    You can hide it with CSS. Something like:

    
    @media only screen and (max-width: 800px) {
    	.big-leader {
    		display: none;
    	}
    }
    

    Or add that rule to an existing media query where you would want the image to not display. Hope this helps–

Viewing 1 replies (of 1 total)
  • The topic ‘Removing this plugin from mobile devices’ is closed to new replies.