Create space between header & section - Mobile Origin

Hi there,

I would like to add some space between the header and the content on the first image on mobile.

I tried adding below code, which worked in the editor, but I am not able to save it in the editor (it gives an error).

Is there a way to edit the code and add it to theme file?

blog page

password: skoffi

@media screen and (max-width: 749px) {
.banner__content--bottom-right {
    margin-top: 80px !important;
{
   
}

thanks so much!

Hi @INFRA ,

You have a double open curly bracket:

@media only screen and (max-width: 749px){
.banner__content.banner__content--bottom-right.page-width.scroll-trigger.animate--slide-in {
    margin-top: 80px;
}
}

i hope it help.

thank you, this worked perfectly!