How to set a label "Powered by xxx" at the bottom of the page
Hi,
I wish to add a label at the bottom of every page regardless of the screensize.
May I know how to go about it?
Thanks!
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/
Hi,
I wish to add a label at the bottom of every page regardless of the screensize.
May I know how to go about it?
Thanks!
Add a label to your page with your preferred text, after that give that label a class name (for instance: label_class) and then create a custom css and add this code:
code
.label_class {
position:absolute;
bottom: 32px;
}
/code
That should do the trick. Provided that you have a footer.
Hello,
Dirk, thank you for your reply. But maybe it is better to add this text with css:
predata-role="footer"{
text-align:center;
}
content: 'Powered by xxx';
}/pre