Why does my website footer disappear on mobile view?

I have noticed that a part of my footer is hiding behind the big picture on the front page/landing page when you visiting my website www.sandranobreart.com
I’m using the Atlantic theme. How can this be fixed? Please help me! I’m using the Atlantic theme.

@sandranobre

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

#shopify-section-static-footer {
    clear: both;
}

Thanks!

1 Like

hello @sandranobre

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

@media only screen and (max-width: 749px){
.home-section  .slideshow--viewport .slide {
float: none;
}
}
1 Like