In my website’s mobile view I want to hide a particular popup named nitro, that appears only in mobile view. I attah the reference image for your understanding and also attaching the website link.
website: https://offnorth.com/
In my website’s mobile view I want to hide a particular popup named nitro, that appears only in mobile view. I attah the reference image for your understanding and also attaching the website link.
website: https://offnorth.com/
Hello @Sivadarshan
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
@media screen and (max-width: 749px) {
#nitroPopUpIframeContainer {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Sivadarshan
let try to add this Custom CSS code :
@media screen and (max-width: 989px) {
#nitroPopUpIframeContainer {
display: none !important;
}
}
result:
if you are using any app disable it. there is option in that app.
in case you not find any option use the css display none it hide it.