Adding social media links to footer? | Community
Skip to main content

Adding social media links to footer?

  • February 16, 2022
  • 2 replies
  • 0 views

Kendall11

I'm trying to find out how to add our social media links to the footer of our Copenhagen theme, preferably with icons rather than text. Anyone have success with adding code for this? Thanks in advance!

2 replies

Tipene
  • February 17, 2022

Hi @kendall11,

Thanks for reaching out!

One way to achieve this would be adding the icons to the assets folder and then adding some additional code to the footer.hbs file. Something like this should do it:

<a href="https://example.com">
  <img src={{asset "social_icon.png"}} alt="social icon" >
</a>

Then you'll just need to add some styling in the style.css file to get it looking how need it.

I hope this helps! Feel free to reach out with any questions.

Tipene


Kendall11
  • Author
  • February 25, 2022

A perfect fix! Thanks so much!