Showing 1 – 1 of 1 replies
Sony

Fixed Footer - phone and tablet issue

Sony PURCHASED
2 weeks ago
Hi,

I implemented fixed footer in my application, but on mobile phone (landscape rotation) and tablets is not possible to scroll.

Even on live preview on fixed footer sample on mobile phone (landscape rotation) scroll is disabled.

Is it possible to fix this and how?
SeanTheme
SeanTheme SELLER
2 weeks ago
Hi,

You may try to add the following css

<style type="text/css">
@media (max-width: 767px) {
.app-content-full-height .app-content {
max-height: calc(100vh - 101px);
}
}
</style>

and do the following thing to the fixed footer page

<div id="content" class="app-content d-flex flex-column p-0">
<div class="app-content-padding flex-grow-1" data-scrollbar="true" data-height="100%">
<!-- content here -->
</div>
</div>

Best Regards,
Sean.