XF 2.2 How to add images in the footer

open the template page_container.
find the line:

Code:
<div class="p-footer-row-opposite">

above it insert the following:


Code:
<div class="p-footer-row-main">
                <ul class="p-footer-linkList">
                    <li><img src="/path/your.pic"></li>
                    <li><img src="/path/your.pic"></li>
                </ul>
            </div>

It's really only basic. Of course, you have to adapt it a bit. But it works the way it is.
 
Top Bottom