Add About and Contact to mobile menu

Posted in: Newspaper
Post count: 27

Is there a way to add links like “About” and “Contact” to ONLY the mobile menu and NOT the main desktop menu? I’d prefer not putting them in the main menu, however when you view my site http://www.retirewire.com in mobile there’s NO links to about and contact because they’re in the top menu.

Post count: 23312

Hello lasvegascfp,

Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

@media (min-width:767px){
#menu-item-5135, #menu-item-4798{
display:none;
}
}
@media (max-width: 767px){
.td-header-top-menu-full {
display: block!important;
}
}
@media (max-width: 767px){
div.td-header-sp-top-menu {
display:block !important;
}
}
@media (max-width: 767px){
.td-header-top-menu-full {
display: block!important;
}
}
.td-header-sp-top-widget, .td_ul_login{
display:none!important;
}

The result you should see here -> http://screencast.com/t/PY0SCqg0nsBW

Thanks for your understanding!

Post count: 27

Thanks for your help!

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