Dawn theme troubleshooting - urgent

Solved

Dawn theme troubleshooting - urgent

Sivadarshan
Shopify Partner
354 2 72

In my dawn theme website I want to hide the 60% off section which was present in left bottom. please help me with this. I'll attach the reference image for your understanding.

 

website: https://offnorth.com/

 

Screenshot 2025-05-08 164209.png

 

Thanks in advance

Accepted Solution (1)

GTLOfficial
Shopify Partner
851 176 190

This is an accepted solution.

Hello @Sivadarshan 
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

#nitroPopUpIframeContainer {
display: none !important;
}

result
25.png


If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

Replies 4 (4)

ProtoMan44
Shopify Partner
742 60 114

@Sivadarshan hey, thanks for posting here.
please put it in CSS:

if it help to solve your issue so please mark is as solved.

 

.customPhoneValidation {
    display: none;
}


 

- A thirsty developer passionate about supporting the community. If you'd like to, you can  

Buy me a Coffee.


- Your Shopify Solution Specialist Get a Quote at

ProtoMan44

 - 

Chat On Whatsapp


Crafting exceptional e-commerce experiences to elevate your online presence. Let's build your success story together!

yogeshkhasturi
Shopify Partner
10 0 0

Hi @Sivadarshan ,

You can hide the 60% off section by adding following css:

#nitroPopUpIframeContainer {
    display: none;
}

 

Or if you are adding this with any app, you can simply just disable that app extension the problem will be solved.

GTLOfficial
Shopify Partner
851 176 190

This is an accepted solution.

Hello @Sivadarshan 
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

#nitroPopUpIframeContainer {
display: none !important;
}

result
25.png


If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

muhammad-danish
Shopify Partner
20 1 1

Hi @Sivadarshan,

Go to the base.css file and add this code

div#nitroPopUpIframeContainer {
    display: none;
}

If that works for you. Don't forget to like and mark it as a solution