How can I increase the space between my page and header?

Hi everyone,

I have an issue with the space between the transparent header and the page. First heading appears in the header. I already tried some codes from the forum wihout success. Below the picture:

Can anyone help?

Many thanks in advance!

Hello,
please share your site url.

https://usa.hech.com/

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->timber.scss.css

.template-collection .main-content .wrapper {
    margin-top: 150px;
}
.template-product .main-content .wrapper {
    margin-top: 150px;
}
.template-page .main-content .wrapper {
    margin-top: 150px;
}

@media only screen and (max-width: 749px){
.template-collection .main-content .wrapper {
    margin-top: 70px;
}
.template-product .main-content .wrapper {
    margin-top: 70px;
}
.template-page .main-content .wrapper {
    margin-top: 70px;
}
}
1 Like

hello @blossom2

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-collection .main-content .wrapper , .template-product .main-content .wrapper ,.template-page .main-content .wrapper {
    margin-top: 120px !important;
} 
@media only screen and (max-width: 749px){
.template-collection .main-content .wrapper  , .template-product .main-content .wrapper , .template-page .main-content .wrapper{
    margin-top: 70px !important;
}

Unfortunately it didn´t worked.

hello @blossom2

can you please share screenshot of assets folder in which file to add code

Thank you so much! It worked now :slightly_smiling_face: