Code Monkey
Customer
What CSS would I use to add a font before the terms and rules link at the bottom?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I should add that I know how to do it by editing the template, which I don't want to do. I want to do it with css if I can.
#legal li:first-child a:before
{
font-family: FontAwesome;
content: '\f0a1';
margin-right: 5px;
}
#legal li:last-child a:before
{
font-family: FontAwesome;
content: '\f0a2';
margin-right: 5px;
}