Solved

i added a sticky header but it overlaps store

aimeemorash7
Tourist
12 0 1

how can I fix this? I use debut theme

www.petbenefit.net

Accepted Solution (1)

Zworthkey
Shopify Partner
5581 642 1565

This is an accepted solution.

hii, @aimeemorash7 
Paste this code on top of the theme.scss file.

@media only screen and (max-width: 749px) {
main#MainContent {
    margin-top: 100px !important;
}
}
@media only screen and (min-width: 992px) {
main#MainContent {
    margin-top: 145px !important;
}
}

Thank You.

View solution in original post

Replies 2 (2)

Zworthkey
Shopify Partner
5581 642 1565

This is an accepted solution.

hii, @aimeemorash7 
Paste this code on top of the theme.scss file.

@media only screen and (max-width: 749px) {
main#MainContent {
    margin-top: 100px !important;
}
}
@media only screen and (min-width: 992px) {
main#MainContent {
    margin-top: 145px !important;
}
}

Thank You.

aimeemorash7
Tourist
12 0 1

thank you so much!