White bar below hero video

Builder content link

What are you trying to accomplish
Hello there. I’m trying to remove the white bar below the hero video and I can’t figure out how to do that. Can someone please assist?

Hi @racheldbailey, you can remove the white line by adding some custom css to your page to “undo” some other styling coming from your Shopify theme:

.css-79elbk {
    display: flex;
}
1 Like

Hi @racheldbailey,

Alternatively, you can put your video inside a box, add a custom css class to the box like my-special-class in the style tab > advanced, and use this css instead:

.my-special-class > div > div {
  display: flex;
} 
1 Like

This worked like a charm. Thank you!

1 Like