Forum images change to Font Awesome images Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
5 posters

    Forum images change to Font Awesome images

    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Forum images change to Font Awesome images

    Post by Joost Tue Feb 13 2018, 19:00

    Dear member, Hello

    I have a question about my board images.
    How can i change the images to Font Awesome , is that possible? Smile

    Forum images change to Font Awesome images Scr23

    Thanks for your help and time.
    My forum: http://www.hpmagicworld.nl/forum (own domainname)

    Regards, Joost


    Last edited by Joost on Mon Feb 26 2018, 09:52; edited 1 time in total
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51515
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue Feb 13 2018, 20:10




    Forum images change to Font Awesome images Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Tue Feb 13 2018, 22:28


    I have add the template code, i'm working with Font Awesome in HTML pages, and i have this in my editor.
    How can i add this to the images ? Very Happy
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51515
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue Feb 13 2018, 23:27

    1. CSS Pseudo Element

    Let's say I wanted to add the fa-link icon next to my navbar links. This can be done by copying the link icon from the cheatsheet and pasting it as the content value. Lastly we need to set the font-family as FontAwesome so the icons display properly. Our result would be :

    Forum images change to Font Awesome images Captur21
    Code:Select Content
    Code:
    a.mainmenu:before, a.mainmenu::before {  content:"";  font-family:FontAwesome;}



    Forum images change to Font Awesome images Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Wed Feb 14 2018, 09:33

    SLGray wrote:1. CSS Pseudo Element

    Let's say I wanted to add the fa-link icon next to my navbar links. This can be done by copying the link icon from the cheatsheet and pasting it as the content value. Lastly we need to set the font-family as FontAwesome so the icons display properly. Our result would be :

    Forum images change to Font Awesome images Captur21
    Code:Select Content
    Code:
    a.mainmenu:before, a.mainmenu::before {  content:"";  font-family:FontAwesome;}

    These are for navigation, my navigation use all the FontAwesome images. I mean my board images (read forum, unread forum, locked forum and then the topic index (Announcement topic, Sticky topic ect) Smile Embarassed
    tikky
    tikky
    Forumember


    Posts : 898
    Reputation : 157
    Language : 🇵🇹

    Solved Re: Forum images change to Font Awesome images

    Post by tikky Wed Feb 14 2018, 13: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:
    Forum images change to Font Awesome images Vsdkjm




    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;
    }
    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Wed Feb 14 2018, 16:00

    Thanks for your help @pedxz , this works only on my legend. I will show this in my forum index, topic index and legend.. I'm sorry i don't tell that see i know.. Sad

    Forum images change to Font Awesome images Scr24
    tikky
    tikky
    Forumember


    Posts : 898
    Reputation : 157
    Language : 🇵🇹

    Solved Re: Forum images change to Font Awesome images

    Post by tikky Thu Feb 15 2018, 21:25

    could you give me the following templates?
    index_box & topics_list_box & viewforum_body

    use
    Code:
    [code][/code]
    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Fri Feb 16 2018, 13:53

    pedxz wrote:could you give me the following templates?
    index_box & topics_list_box & viewforum_body

    use
    Code:
    [code][/code]

    I have send a PB with the templates to you. Can you send the customize template(s) to PB back. Not in this topic, please. Smile
    Many thanks for your help and time.
    avatar
    Revolved101
    Forumember


    Posts : 35
    Reputation : 1
    Language : English

    Solved Re: Forum images change to Font Awesome images

    Post by Revolved101 Fri Feb 23 2018, 06:19

    pedxz wrote:Hey @Joost,

    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;
    }


    Where do I find this code
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19168
    Reputation : 1995
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: Forum images change to Font Awesome images

    Post by Ape Tue Feb 27 2018, 00:43

    @Joost is this now solved ?



    Forum images change to Font Awesome images Left1212Forum images change to Font Awesome images Center11Forum images change to Font Awesome images Right112
    Forum images change to Font Awesome images Ape_b110
    Forum images change to Font Awesome images Ape1010
    Joost
    Joost
    Active Poster


    Male Posts : 1358
    Reputation : 191
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Tue Feb 27 2018, 22:23

    APE wrote:@Joost is this now solved ?

    Yes, this is solved.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51515
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue Feb 27 2018, 22:34

    Problem solved & topic archived.
    Please read our forum rules:  ESF General Rules



    Forum images change to Font Awesome images Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.