Add word "Menu" next to menu button in mobile view

Posted in: Newspaper
Post count: 5

I want to add word “Menu” next to menu button (I mean top menu) when we view in mobile, Can you tell me how can I do it?

Post count: 22421

Hello,

The best way to do it is add a menu item to the top menu and name it menu: http://screencast.com/t/nFGssrBgws
And then figure out the class of the item and use css to hide it on desktop and tablet viewports like for example: http://screencast.com/t/KsLzGW2IFg
Then you can use this class to target it like so:
@media (min-width:767px){
.menu-item-2318{
display:none!important;
}
}

You can even use font awesome for menus to add an icon to it if you want.

I hope this helps.
Thank you!

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