Header covers pages

Hi,
hope you can help :slightly_smiling_face:
For some reason my header on mobile mode covers the pages. Can anyone help me bring it up so that it won’t cover the beginning of my pages ? (Dawn theme)
https://3nkjuekrq4igsyfd-62429855986.shopifypreview.com

Thank you in advance!!

1 Like

Hi @Daniel19901

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 989px){
div#shopify-section-template--21625367134537__pagefly-home {
    margin-top: -25%;
}
#__pf > div > div > div.sc-kYHfwS.doYKjf.pf-7_.pf-color-scheme-1 > div > div > div:nth-child(1) {
    padding-top: 25%;
}
.header-wrapper {
    position: unset !important;
}
}

And save.

Result;