Cart summary view

Hi,
The issue is that the top of the cart summary is hidden from the website menu.
You can view the issue in the screenshot:


Thanks.

Hi @Sandokanz1,

This often occurs when elements have a higher z-index than the cart.

You can either lower the z-index of your header or override the styling of the cart.

For instance, adding the following code in your CSS file should fix the issue:

.snipcart-modal__container { 
    z-index: 999
}

Let me know if that helps!

Right solution.
Thank you.