Hi,
The footer is overlaying all pages.
Is it possible to change all of them BUT the home page? I like that the footer is overlaying the banner image.
Thanks
password: mieneefd
A Shopify store owner using the Dawn theme is experiencing a footer overlay issue on mobile devices across all pages. They want to fix this problem while preserving the footer overlay effect on the homepage banner image.
Solutions Proposed:
PageFly-Oliver suggested adding CSS code (position: relative !important to .footer__content-bottom) in the footer-section.css file, but this affected both mobile and desktop versions.
SideNode provided a more targeted approach: adding custom CSS in the theme.liquid file that applies only to non-homepage templates using Liquid conditionals ({% unless template.name == 'index' %}). An initial error was corrected by changing the position property from fixed to the appropriate value.
Current Status:
The issue appears partially resolved - the footer now displays correctly on non-homepage pages, but the homepage footer has shifted to the middle of the page. The user confirmed this is the only remaining problem, with other pages working correctly.
Hi,
The footer is overlaying all pages.
Is it possible to change all of them BUT the home page? I like that the footer is overlaying the banner image.
Thanks
password: mieneefd
Hi @danbot ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file footer-section.css
Step 3: Paste the below code at the bottom of the file → Save
.footer__content-bottom{position:relative !important}
Hope my solution works perfectly for you!
Best regards,
Oliver | PageFly
Hi,
It’s only for the mobile version, all pages but the homepage.
Your solution is changing also desktop version.
![]()
Hey @Danbot
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
Let me know if need further assistance
Regards,
Hi!
Thanks,
Is working in the other pages, now the homepage has the footer in the middle:
I think is the only issue, the rest, perfect!
so sorry this is my mistake replace this css
.my-custom-class .footer__content-bottom {
position: fixed!important;
}
use this so sorry
Hi @danbot ,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.liquid
Step 3: Paste the below code at the bottom of the file → Save
{% unless template.name=='index' %}
{% endunless %}