Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1113237
Change Fax Icon in Top Area
Closed

Comments

  •  2
    brightestspark started the conversation

    I’m wanting to change the fax icon in the top area to a printer icon -
    either e103 or e0fa, but they don’t work. I managed to change the phone
    icon using
    body .top-area-contacts .gem-contacts-phone:before { content: '\e625'; }
    but neither of the printer icons codes work. Any ideas?

    My dev site is local so you cannot see the link.

  •  6,930
    Oliver replied

    HI!

    From what icon pack this icon?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    brightestspark replied

    Hi Gregor

    I found the 2 printer icon codes (e103 and e0fa) in 'Elegant' icon pack in The Gem visual composer 'icon' element. I assumed they would be available sitewide?  Do you know of another printer icon that will work?

  •  6,930
    Oliver replied

    HI!

    1. In the child theme, function.php add next code:

    wp_register_style('icons-elegant', get_template_directory_uri() . '/css/icons-elegant.css');
    wp_enqueue_style('icons-elegant');
    

    css:

    body .top-area-contacts .gem-contacts-fax:before {
        content: '\e103';
        font-family: 'ElegantIcons';
    }
    

     

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    brightestspark replied

    Terrific - works great. Thanks :)

  •  6,930
    Oliver replied

    Feel free to contact us if you need help.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver