Css code to add font awesome icon before or after any elements, change the element class with your desired class.
To add icon just before :
101
 .element a::after{
      font: normal normal normal 17px/1 FontAwesome;
       content: "\f105"!important; 
       vertical-align: 0; 
       margin-right:2px;
      }
102
To add icon just after :
104
 .element a::after{
    font: normal normal normal 17px/1 FontAwesome;
     content: "\f105"!important; 
     vertical-align: 0; 
     position: absolute;
     right:10px;
     margin-top:0px;
    }
  105