Hello Folks,
As you are aware currently Power Apps portal is using Bootstrap 3 as the base theme. Currently, in the PowerApps portal, the footer hides your form content or web page content.
We can always customize the way we want. Here are the steps for your reference.
In Portal Management:
<footer role="contentinfo" class="footer">
<div class="footer-bottom navbar-fixed-bottom hidden-print">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12 text-left">
{% editable snippets 'Footer' type: 'html' %}
</div>
</div>
</div>
</footer>
Now in Portal Studio
1. Upload a custom.css file by clicking themes
2. And add the below CSS class
3. Adjust padding according to your need
.wrapper-body{
padding-bottom: 100px !important;
}
4. Press Save > Sync configuration > Browse website > Ctrl + F5 > Now you can scroll your content.