wei
Posts: 0
Joined: Sat Aug 02, 2014 4:01 pm

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!

Dirk Gissing
Posts: 0
Joined: Sat Oct 12, 2013 4:18 pm

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

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.

Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

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

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

Return to “Issues”