Footer content
How do I edit footer content? Can't add a simple "About Link" that pop's up a simple text!
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
How do I edit footer content? Can't add a simple "About Link" that pop's up a simple text!
You can place a Button or NavBar component inside the footer right now. It's on our list of things to do, to make it possible to insert any components inside the footer (and header). Another option is to use jQuery to insert the link on screen load, for example.
Add a class to your footer "my-footer-class".
Add into the onload event of your screen Run custom java script and
with
$('.my-footer-class').append('<h1>My Content</h1>')
your content will shown in the footer. Use custom css to add alignment and other css properties you want.
Regards
Frank
Thanks for the solution!