This topic has 7 replies, 2 voices, and was last updated 7 years, 6 months ago ago by Rose Tyler
Hi,
How do I disable the promo popup in the mobile version?
Hello,
You can add this code in Custom css:
@media (max-width: 480px) {
.mfp-wrap.mfp-auto-cursor.mfp-ready {
display: none;
}
.mfp-bg.mfp-ready {
display: none;
}
}
How to create custom.css you can watch in this tutorial https://www.youtube.com/watch?v=Qok2zRedRMY.
Regards,
Rose Tyler.
The code works only on a home page.
When you move to other pages the window pops up again.
Hello,
Oh I see, please use this code:
@media only screen and (max-device-width: 480px) {
.mfp-bg, .mfp-wrap {
display:none;
}
}
Regards,
Rose Tyler.
Thanks. It worked great!
Is there a way to tell the window to appear only on the home page?
Hello,
You’re welcome!
Unfortunately, there is no such option to shown popup only on a home page.
Sorry for inconveniences.
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up