I'm encountering an issue with the side cart and suspect that my CSS is to blame. Can you assist me in resolving this problem?
The webpage has a background image—a full-width banner. However, when I open the side cart, the image overlaps it, concealing the content within the cart.
You can access the page here:
To observe the issue, simply click on the cart to open the side cart.
Here is the HTML section:
This is my current CSS:
#header-image {
background-image:url("{{ 'Ladyinblue Copy.jpg' | asset_url }}");
width: 8980px;
height: 450px;
position: relative;
margin: 0 auto;
margin-left: -3999px;
margin-right: 0;
background-repeat:no-repeat;
background-position: center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin-bottom: 10px;
overflow:hidden;
}
Your assistance in identifying any errors would be greatly appreciated!
Thank you for your help!