Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save julian-stark/08af8559a691b0b8b39bf7c509bcf1a7 to your computer and use it in GitHub Desktop.
Save julian-stark/08af8559a691b0b8b39bf7c509bcf1a7 to your computer and use it in GitHub Desktop.
If you use Elementor Pro for the header, the Eicons font is used for the hamburger icon. This CSS code replaces it with Font Awesome icons.
/*
* Replace Eicons with FontAwesome
*/
.eicon {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.elementor-menu-toggle i:before {
content: "\f0c9";
}
.elementor-menu-toggle.elementor-active i:before {
content: "\f00d";
}
@julian-stark
Copy link
Author

@julian-stark
Copy link
Author

Font Awesome content values: http://astronautweb.co/snippet/font-awesome/

@donaldjenkins
Copy link

How about replacing the menu icon with a custom icon, if one wants to disable both Font Awesome and icons?

@wpfyorg
Copy link

wpfyorg commented Aug 10, 2019

It's showing blank icon

image

@PieterT2000
Copy link

Same problem here. Please can you review your code? Thanks a lot!

@wpfyorg
Copy link

wpfyorg commented Aug 27, 2019

Same problem here. Please can you review your code? Thanks a lot!

Try this - https://gist.github.com/wpfyorg/c7821be7f951258e09f1f6b731a54ab9

@iknowanon
Copy link

How about replacing the menu icon with a custom icon, if one wants to disable both Font Awesome and icons?

Did you ever find a solution to this? I also disabled these and looking to add the icon via CSS. I found the following code, but don't know how to modify it so that it works in an Element's custom css:

.hamburger {
position: relative;
display: inline-block;
width: 1.25em;
height: 0.8em;
margin-right: 0.3em;
border-top: 0.2em solid #fff;
border-bottom: 0.2em solid #fff;
}

.hamburger:before {
content: "";
position: absolute;
top: 0.3em;
left: 0px;
width: 100%;
border-top: 0.2em solid #fff;
}

@presswerk
Copy link

worked for me: (added font-weight and right F-A 5 font-family

/*

  • Replace Eicons with FontAwesome
    */
    .eicon {
    display: inline-block;
    font: normal normal normal 14px/1 'Font Awesome\ 5 Free';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    .eicon-menu-bar {
    font-style: normal;
    }
    .elementor-menu-toggle i:before {
    content:"\f0c9";
    font-family:'Font Awesome\ 5 Free';
    font-weight:900;
    padding: 8px;
    }

.elementor-menu-toggle.elementor-active i:before {
content: "\f00d";
font-family: 'Font Awesome\ 5 Free';
font-weight:900;
}

@robomike
Copy link

Anyone know why when I disable Font Awesome via Php, then my uploaded SVGs disappear? I really want to remove the loading for fa-regular-400 , it just takes too long to load.

@mareklexuan
Copy link

Anyone know why when I disable Font Awesome via Php, then my uploaded SVGs disappear? I really want to remove the loading for fa-regular-400 , it just takes too long to load.

Font Awesome will deactivate if it's not used on the page, I just replaced all icons with SVG and worked fine. But some of the Elementor widgets use FA for their icons, like Search widget, so they load it anyway. But so far all widgets I had an issue with loaded only fa-solid


It seems like FA doesn't load in NavMenu if it is the only icon on the page. I have the same issue and if I add another FA icon on the page, my menu works fine.

elementor/elementor#9907

@nikkikrs
Copy link

nikkikrs commented Sep 29, 2020

Thank you @presswerk. Been searching for the answer for days. Great code and worked perfectly!

@SM-Fahim
Copy link

This blog helped to replace the icons with custom icons.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment