chojo

Registered
Hi everyone,
I really liked the icons in the FlatAwesome style. I would like to have the same icon that you can find beside Ressources, members and forum. Also, replace the conversation and alert word for the enveloppe and pin icon.

If this unclear, I appologize and will try to explain it better. If not, I would like to know how to incorporate thoses icons in the Apex-Light style.

Thank you in advance for your patience.
 
Hey @chojo

Not really sure how this passed us to be honest sorry!

For the icons in the nav:

Code:
.navTabs .navTab.PopupClosed .SplitCtrl:before
{
   display: inline-block;
   font-family: FontAwesome;
   font-size: 12px;
   color: @primaryLightish;
   text-align: center;
   content: '\f0c9';
}

For the icons alerts/inbox

Open navigation_visitor_tabs:

Find this line:

Code:
<a href="{xen:link conversations}" rel="Menu" class="navLink NoPopupGadget">

Replace the {xen:phrase snippet} right next to it with:

Code:
<i class="fa fa-envelope-o"></i>

Code:
<a href="{xen:link account/alerts}" rel="Menu" class="navLink NoPopupGadget">

Replace the {xen:phrase snippet} right next to it with:

Code:
<i class="fa fa-map-marker"></i>

Or use whatever icon you want.
 

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