Powered by Mango Footer
-
With an HTML page I generate dynamically using NG-REPEAT, how do I get the
"Powered by Mango Automation v3.5.6 ©2019 Infinite Automation Systems, Inc. All rights reserved."
footer to actually go to the footer of the generated page? -
Hi Phillip
Could you post a screenshot? Sounds like you have a
<div>
overflow. You can't have any static sizes or positions when you doing dynamic pages. If you pasted your HTML I could help. -
Put the ng-repeat inside it's element, but make sure that is surrounded by the div with a class of:
class="ma-designer-root"
I've also found it handy to give this div a sensible ID (ie not a UUID generated one) on which you can start doing some styling.
EG:
<style> #main { width: 100%; height: 100%; padding: 0; margin: 0; } </style> <div class="ma-designer-root" style="width: 1366px; height: 768px; position: relative;" id="main"> <p ng-repeat="(name, age) in {'adam':20, 'amalie':22}">{{name}} is {{age}}</p> </div>
HTH
Richard