Hi,
for some reason the announcement bar I have covers the drawer on mobile and desktop. Can anyone help me make sure that the drawer is on top of it once it goes out ?
Thank you!!
https://ynco-ny.com/
Announcement bar overlays the cart/menu drawer on mobile and desktop in a Shopify store.
Key issue:
Proposed fixes:
Evidence:
Considerations:
Status:
Hi,
for some reason the announcement bar I have covers the drawer on mobile and desktop. Can anyone help me make sure that the drawer is on top of it once it goes out ?
Thank you!!
https://ynco-ny.com/
Hi @Daniel19901
It seems like you add a very high z-index in your bar announcement.
The cart drawer bust have the higher z-index.
Make it 10 so it not covering the drawer.
And save the changes.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
In the e CSS file, such as theme.css or custom.css):
CSS
.your-drawer-class {
z-index: 1000; /* Adjust the value as needed */
}