How to remove spacing between header and Video

Good day!

How to remove spacing between header and Video

https://hushpuppies.com.ph/

Thank you!

Hi @smsigroup

Nice website! Please follow the instructions below to remove the spacing.

!. From you Admin page, go to Online Store > Themes
2. Select the theme you want to edit
3. Under the Asset folder, open the main.css
4. Then place the code below at the very bottom of the file

.shopify-section:first-child .section {
    margin-top: 0
}

Result:

Hi @made4Uo

It works, thank you very much for your help

seems cant find how to replicate your code, i tried to locate using chrome web dev
tool.

The code only calls the first shopify section class. Are you trying to remove all spaces?

Yes, im trying to find using chrome dev tools which section class to call

If you want to apply it to all section, you can use the code below.

.shopify-section .section {

margin-top: 0

}

Hi @made4Uo ,

Thank you very much for your help.