video background on contact page

Quite urgent. On my “contact” page theres a video background, can someone tell me how to get the contact box template to overlap the video background?

STORE URL: https://c1e46d.myshopify.com/pages/contact

hi @suoshie

paste this css code at the bottom of your base.css file

section#shopify-section-template--18057347399996__form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
}

section#shopify-section-template--18057347399996__form .color-background-1.gradient {
    background: transparent !important;
}
section#shopify-section-template--18057347399996__form .color-background-1.gradient input{
   background: transparent !important;
}
1 Like