how do i change color of newsletter popup background in desktop and mobile view
required color code is F2EFDD
store url : https://dms77avniapij879-56680546493.shopifypreview.com
how do i change color of newsletter popup background in desktop and mobile view
required color code is F2EFDD
store url : https://dms77avniapij879-56680546493.shopifypreview.com
Hi @kashifjohn
Go to theme editor
Search “component-newsletter.css”
Paste this code in component-newsletter.css
Save it.
.halo-popup-wrapper .overflow {
background: #F2EFDD;
}
I hope this will work. If yes, mark my solution as accepted and like it.
Regards,
Team_OSC
@kashifjohn - add this css to the very end of your base.css file and check
.halo-popup-wrapper .overflow {background-color: #F2EFDD;}
Hello @kashifjohn
Step 1: Go to Shopify Admin ----------------> Online Store ----------->Theme ---------------> Edit code------------> find “base.css” file and go to line number 1024
find this CSS
.background-overlay, .background-overlay1 {
position: fixed;
background-color: #232323cc;
top: 0;
left: 0;
bottom: 0;
right: 0;
cursor: pointer;
display: block !important;
z-index: 100;
opacity: 0;
pointer-events: none;
transition: opacity var(--duration-long) ease;
}
and Replace with this css.
.background-overlay, .background-overlay1 {
position: fixed;
background-color: #F2EFDD;
top: 0;
left: 0;
bottom: 0;
right: 0;
cursor: pointer;
display: block !important;
z-index: 100;
opacity: 0;
pointer-events: none;
transition: opacity var(--duration-long) ease;
}
Please let me know
Thanks
Hi @kashifjohn
.halo-popup-wrapper .overflow {
background-color: #F2EFDD;
}
Hi @kashifjohn
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.