How to make section background on password page transparent?

Hello!

I am looking to make the background of my SMS list section transparent as I have a video that is meant to play behind it. Any advice?

Site is https://vietgnam.us

Hi @spazerunas ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file → Save

div:has(div > div .countdown-banner-image) {
   background-color: transparent !important;
} 

.countdown-banner-image {
  background-color: transparent !important;
}

Final Result:

Hope it helps you

Kind regards,

HDL-Shin