Hi. I am building custom footer , however because of the reveal footer that stays in place when scrolling up and down the page, I have issue with footer on mobile phone that Is not fully displayed.
How I can disable this footer function ?
X3 Photo Gallery Support Forums
I checked your website and I can see the problem is related to the footer being taller than the screen, and therefore the top part of the footer is not visible. This is a bit unusual, although you are right there should be a solution to prevent this.Faust wrote: Hi. I am building custom footer , however because of the reveal footer that stays in place when scrolling up and down the page, I have issue with footer on mobile phone that Is not fully displayed.
How I can disable this footer function ?
body[class*="topbar"] .footer {
position: absolute;
}
@media (max-width: 800px) {
body[class*="topbar"] .footer {
position: absolute;
}
}
In your specific case, it's a bit dodgy because you have added your own internal "happy-footer-fix" into X3's "footer", and all your background is applied to your "happy-footer-fix".Faust wrote: I still have the gap on my Photography website, not massive, but would like to get rid of it. Any idea?

.footer {
padding: 0 !important;
}