by tikky Wed 14 Feb 2018 - 12:11
Hey
@Joost,
you can change the system of images and put with font awesome, that is:
Go to
index_body (template) and find the following code
- Code:
<!-- BEGIN switch_legend -->
<ul id="picture_legend">
<li><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" />{L_NEW_POSTS}</li>
<li><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" />{L_NO_NEW_POSTS}</li>
<li><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" />{L_FORUM_LOCKED}</li>
</ul>
<!-- END switch_legend -->
and change to
- Code:
<!-- BEGIN switch_legend -->
<ul id="picture_legend">
<li><i class="fa fa-{FORUM_NEW_IMG}"></i>{L_NEW_POSTS}</li>
<li><i class="fa fa-{FORUM_IMG}"></i>{L_NO_NEW_POSTS}</li>
<li><i class="fa fa-{FORUM_LOCKED_IMG}"></i>{L_FORUM_LOCKED}</li>
</ul>
<!-- END switch_legend -->
Now you go to the topic icons and in each image you change the link to an awesome code
For example:
and change this code too
- Code:
a.mainmenu:before, a.mainmenu::before { content:""; font-family:FontAwesome;}
to
- Code:
a.mainmenu::before {
content: '/f0c1 ';
font-family: FontAwesome;
}