Cart Drawer - Hide Icon on Open

Hello, can someone please help me hide my Google icon and music icon when the cart drawer opens on both mobile and desktop. On desktop the icons are blocking the subtotal when it opens. This is a major issue. Please assist, we appreciate it.

Our website is https://www.yonicque.com

This is a classic z-index issue. Your floating widgets (Google/music) have a higher z-index than the cart drawer, so they sit on top of it.

You basically just need to force the cart drawer to the front using CSS. What theme are you using?

Usually, you can fix this by going to Theme Settings > Custom CSS and adding something like:

.cart-drawer { z-index: 999999 !important; }

If that exact class doesn’t work, drop your theme name here and I’ll give you the exact snippet.