R rodritwm Member Apr 25, 2021 #1 Hello guys how can i add some images in the footer? Something like this: Thank you so much!
kelle67 Well-known member Apr 26, 2021 #3 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. Upvote 1 Downvote
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.