Font Awesome icon not appearing in footer #4712
-
I want to add an FA link icon before a link in my footer. So in - label: "My text here"
icon: "fab fa-fw fa-link"
url: "https://www.someurl.com/" The link appears in my footer but the space where the icon ought to appear is empty. Out of desperation I tried adding the following to /* HACK */
.fa-link {
color: red;
} Any ideas what is going on? |
Beta Was this translation helpful? Give feedback.
Answered by
iBug
Apr 25, 2024
Replies: 1 comment
-
Next time best to just copy the code from https://fontawesome.com/v5/icons/link?f=classic&s=solid. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
iBug
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
fa-link
is a solid icon, not a brand icon. Usefas
instead offab
.Next time best to just copy the code from https://fontawesome.com/v5/icons/link?f=classic&s=solid.