XF 1.5 Show tags on navTab with FA

I don't know if this were asked before.
I want to show tags page on navigation tab. I have already show others tabs with FontAwesome.

Here is my extra.css ready to show /tag page with FA but i don't know what and where to edit.

PHP:
/* START - FA NAVIGATION*/
.navTab.WidgetFramework_home .navLink:before {
content: '\f015';
font-family: FontAwesome;
font-size: 15px;
font-weight: normal;
padding-right: 3px;
}

.navTab.forums .navLink:before {
content: '\f0e6';
font-family: FontAwesome;
font-size: 15px;
font-weight: normal;
padding-right: 3px;
}

.navTab.members .navLink:before {
content: '\f0c0';
font-family: FontAwesome;
font-size: 15px;
font-weight: normal;
padding-right: 3px;
}

.navTab.tags .navLink:before {
content: '\f02c';
font-family: FontAwesome;
font-size: 15px;
font-weight: normal;
padding-right: 3px;
}
/* END - FA NAVIGATION*/

Thank You!
 
Top Bottom