XF 1.2 How do we add a copyright

Ken Black

Member
Hi, how can we add a copyright line in the center of the footer for our website ?

Copyright 2013 www.ourdomainname - All Rights Reserved.

It would be good if we could include the copyright symbol also after the word Copyright.

Help appreciated.
 
Hi, how can we add a copyright line in the center of the footer for our website ?

Copyright 2013 www.ourdomainname - All Rights Reserved.

It would be good if we could include the copyright symbol also after the word Copyright.

Help appreciated.
In your footer template look for
Code:
<div id="copyright">{xen:phrase xenforo_copyright}</div>
and add another below it called my_copyright. Create a new phrase called my_copyright and then instead of
Code:
{xen:phrase xenforo_copyright}
use
Code:
{xen:phrase: my_copyright}
.

Another option (and this is for my style from @Audentio - for the example I just removed the copyright stuff of his - it's still present on my install at servinglinux.com) is
Code:
<div id="copyright">{xen:phrase xenforo_copyright}<br>{xen:phrase my_copyright}</div>

Another way (using the existing copyright CSS) is
Code:
<div id="copyright">{xen:phrase xenforo_copyright}<br>{xen:phrase my_copyright}</div>
 
Last edited:
Top Bottom