• Is there any resolution on adding FA to menu items with children when the parent was created through a custom menu link? FA will show up on individual items and children of custom parents, but not on the parents themselves. Workaround? It would be very handy for our menu setup that we’re working on. Thanks!

Viewing 1 replies (of 1 total)
  • Hey mate, not the prettiest workaround but I was just faced with the same issue. This jQuery resolved this for me:

    jQuery( ".dropdown-toggle" ).each(function() {
    	var items = jQuery(this).find(".fa, .fontawesome-text");
    	jQuery(items).prependTo(this);
    });

    The “.dropdown-toggle” is the class of the navigation with children, in my instance was a bootstrap one.

    Hope this helps.

    • This reply was modified 7 years, 10 months ago by Eddie. Reason: Error on my behalf
    • This reply was modified 7 years, 10 months ago by Eddie.
Viewing 1 replies (of 1 total)
  • The topic ‘Menu Items with Children’ is closed to new replies.