creaky

Customer
If I wanted to add font awesome icons before each section on the user profile page is that something relatively easy to do?

1589218584020.png


I would like to add the icons before Profile posts & Latest activity etc.
 
Something like this should work in extra.less:

Code:
.block-tabHeader--memberTabs a
{
    &:before
{
    .m-faBase();
    .m-faContent("\f090");
    display: inline-block;
    margin-right: 5px;    
}
    &[aria-controls="profile-posts"]:before { .m-faContent("\f039");}
    &[id="latest-activity"]:before { .m-faContent("\f1ea");}
    &[id="recent-content"]:before { .m-faContent("\f6ff");}
    &[id="xfmgMedia"]:before { .m-faContent("\f030");}
    &[id="resources"]:before { .m-faContent("\f085");}
    &[id="about"]:before { .m-faContent("\f007");}
}

Icon list: https://fontawesome.com/cheatsheet

Result:
Screenshot_2.png
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back