How do I remove a pop-up on mobile?
I have a pop-up in the bottom right corner, and I’d like to disable it on mobile—is that possible?
I have a pop-up in the bottom right corner, and I’d like to disable it on mobile—is that possible? Because if I just disable the container for mobile, the pop-up background still shows up...
thank
Comments
It didn't pick up the link.
Hi,
where exactly you got this popup? I don't see any popup on your website regardless screen size.
The small one at the bottom right—I made it using the template in the pop-up section.
Ohh, so you mean this fixed sticky bar. At the moment, we don't have such option as nobody didn't asked for that so far but we can add it in future updates of course.
What you can do now to remove it is go to Theme Options > Custom CSS & JS > Custom CSS section and paste the following custom css:
@media only screen and (max-width:767px) { #mfn-popup-template-121 { display: none; } }