cancel
Showing results for 
Search instead for 
Did you mean: 
ragavanrajan

How to set the footer remain at the bottom of the window in PowerApps Portal

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: 

 

  1. Under Content > Web Templates> Select Footer 
  2. All you need to do is add the "navbar-fixed-bottom" in the div tag line 2 (like below ) 

 

 

<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>

 

 

  1. Hit save and close 

 

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.

Comments