Viewing 5 replies - 1 through 5 (of 5 total)
  • Mike

    (@michael-copestake)

    Hi @asksteve

    This isn’t possible within the plugin, and would take some pretty hefty coding to do.

    However you could simply hide the pop up using CSS.

    Try adding this to your themes styles.css:

    @media all and (max-width: 600px) {
    	div.visiblebox, div.hiddenbox {
    		display: none !important;
    		visibility: hidden !important;
    	}
    	#darkbackground {
    		display: none !important;
    		visibility: hidden !important;
    	}
    }

    You might want to adjust the max-width: value, but 600px should do the job.

    Thread Starter Steve

    (@aksteve)

    It’s not ideal but it works. Thanks much!

    Mike

    (@michael-copestake)

    Hi @aksteve

    You’re welcome, if you could mark as resolved, that would be great to help others find their answers more quickly.

    Thread Starter Steve

    (@aksteve)

    Gotcha. Thanks.

    Mike

    (@michael-copestake)

    Hi @asksteve

    Thanks for that, glad I could help you get that it working(of a fashion 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Doesn't work on mobile’ is closed to new replies.