Icons in menu

Posted in: Newspaper
Post count: 6

Hi, can I easily make a menu with this icon layout? I have my png/eps/svg icons. Thank you for your answer. Regards.Menu view

Post count: 20688

Hi,

The menu supports Font awesome icons, they can be added like this
https://forum.tagdiv.com/how-to-add-icons-in-menu/
You could maybe implement you own icons, with customization. Maybe something like this example, but for each menu item if you require different icons
https://www.screencast.com/t/KjDE5pBRs
I used an icon form the media library in the example, this is the code if you want to make experiments with it

.menu-item-19934 a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}

The menu items IDs can be found with the browser inspector
https://www.screencast.com/t/Gvs0RYpAs
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

If you want the same icon for all the menu items, try it like this
https://www.screencast.com/t/jtc2gypPbvv

.sf-menu > li > a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}

Thanks

Post count: 6

Thanks for the advice, this code has been helpful

.menu-item-19934 a {
background: url("") no-repeat;
background-size: 25px;
background-position: center top;
}

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.