Page 1 of 1

How to set a label "Powered by xxx" at the bottom of the page

Posted: Sat Aug 02, 2014 4:01 pm
by wei

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!


How to set a label "Powered by xxx" at the bottom of the page

Posted: Sat Aug 02, 2014 4:51 pm
by Dirk Gissing

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.


How to set a label "Powered by xxx" at the bottom of the page

Posted: Mon Aug 04, 2014 7:00 pm
by Evgene Karachevtsev

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