Page 1 of 1

Footer content

Posted: Mon Jan 30, 2012 6:04 pm
by Esteban

How do I edit footer content? Can't add a simple "About Link" that pop's up a simple text!


Footer content

Posted: Mon Jan 30, 2012 6:30 pm
by maxkatz

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.


Footer content

Posted: Wed Feb 01, 2012 5:42 pm
by Frank

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


Footer content

Posted: Wed Feb 01, 2012 7:38 pm
by maxkatz

Thanks for the solution!