XF 2.2 How can I build a good footer?

Hareon

Active member
What I need to do to have a beautiul footer like this official from Xenforo? We have a way to build only with Xenforo base (without addons)?

1717724995424.webp
 
Without in addon you need to add html to PAGE_CONTAINER template.

I added it just below the copyright line

Code:
<xf:if contentcheck="true">
            <div class="p-footer-debug">
Or you could pit it above the copyright line

Code:
<xf:if contentcheck="true">
            <div class="p-footer-copyright">

With addon there is a good one

 
Last edited:
Back
Top Bottom