warpunish
Where did you tell the browser to use FontAwesome? Where is the content, that you want to add?
I suggested:
.item-link1::before {
font-family: FontAwesome;
content: ...
font-size: ...
}
but you skipped the two most important attributes.
Anyway, I suggest to use @sledov's way of doing this:
.item-link1 .LinksButton.Button.Button--link::before {
content: "\f005";
font-family: fontawesome;
padding-right: ...
font-size: ...
}
This way, you apply the icon to the <a> element (this has the classes LinksButton
, Button
and Button--link
) , so the icon becomes part of the link.