Mobile Menu Icons

Posted in: Newspaper
Post count: 19

Hello,

Is is possible to show icons, other than the down facing arrows, for the mobile menu only?

Thank you in advance.

Post count: 22421

Hi,
In our theme we use our own custom font and icons. You can see a list of the icons here and the code you need to use in css: http://screencast.com/t/sjEbDBlVsjUb
You can get one of the icons from our theme: http://screencast.com/t/SmZmmr3Bc7Z and apply them using the codes from the list above like so:
.td-icon-menu-down:before {
content: '\e80f'!important;
}

Or alternatively you could use the font awesome for menus plugin.
Hope this helps.
Thanks.

Post count: 19

Hello,

Thank you for the follow up. Perhaps I was not clear enough. I’m hoping to add icons for the mobile menu only. The above code would add them on the desktop view as well. Also is it possible to have a different icon for each mobile menu item?

Thank You

Post count: 22421

Hi,
In order to target only the mobile version you can use the media queries. For example, the code above would look like this:
@media (max-width:767px){
.td-icon-menu-down:before {
content: '\e80f'!important;
}
}

If you want to have individual icons, you can target each menu item using the unique menu item ID:
http://screencast.com/t/64WrVlhrM. You can use your browser inspector to get the individual menu item ID and use it like so:
@media (max-width:767px){
#menu-item-226 .td-icon-menu-down:before {
content: '\e80f'!important;
}
}

Thanks.

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