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.
The forum of the forums
5 posters

    Forum images change to Font Awesome images

    Joost
    Joost
    Active Poster


    Male Posts : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Forum images change to Font Awesome images

    Post by Joost Tue 13 Feb 2018 - 18: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 26 Feb 2018 - 8:52; edited 1 time in total
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue 13 Feb 2018 - 19: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 : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Tue 13 Feb 2018 - 21: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 : 51554
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue 13 Feb 2018 - 22: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 : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Wed 14 Feb 2018 - 8: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 : 922
    Reputation : 160
    Language : 🇵🇹

    Solved Re: Forum images change to Font Awesome images

    Post 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:
    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 : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Wed 14 Feb 2018 - 15: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 : 922
    Reputation : 160
    Language : 🇵🇹

    Solved Re: Forum images change to Font Awesome images

    Post by tikky Thu 15 Feb 2018 - 20: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 : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Fri 16 Feb 2018 - 12: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 23 Feb 2018 - 5: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 : 19432
    Reputation : 2010
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: Forum images change to Font Awesome images

    Post by Ape Mon 26 Feb 2018 - 23: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 : 1407
    Reputation : 194
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Forum images change to Font Awesome images

    Post by Joost Tue 27 Feb 2018 - 21:23

    APE wrote:@Joost is this now solved ?

    Yes, this is solved.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51554
    Reputation : 3523
    Language : English
    Location : United States

    Solved Re: Forum images change to Font Awesome images

    Post by SLGray Tue 27 Feb 2018 - 21: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.

      Current date/time is Mon 11 Nov 2024 - 17:47