Social Icons in footer

Luke B

Active member
The title pretty much sums it up. Whats the easiest aproach to get the social icon buttons in the footer like the example below?

_r2_c2.webp

I had a good look but couldn't find what I was looking for in search.

Thank you all
 
Well you could easily google or find the icons off image sites. Then just add them by going into the footer in the templates and above:
HTML:
<ul class="footerLinks">

add:
HTML:
<div class="footerimages">the codes you want here..</div>

Before this put this at the bottom of your footer.css.

Code:
.footerimages
{
float: left;
}

Thats how it worked for me.
 
Top Bottom