Dawn theme want to hide a thing - troubleshooting

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


Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the ----->
before the body ----->
if this code work please do not forget to like and mark it solution

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.