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