I am editing the CSS on my site, and want to make the bullets that appear next to my "likes" appear as a Font Awesome Heart (link)
I use the following code in my CSS:
span.dots ::before {
font-family: 'FontAwesome';
content: '\f004';
font-size: 15px;
color: #f00;
}
The class of the <span>
is dots, so thats what I am targeting.
The heart appears fine, but it's a full heart, not a bordered hear with a hollowed out center. To get the style I want usually you have to switch the class to "fas fa-heart" but let's assume all I can do is edit the CSS.
Any ideas?