What happens to the top bar in mobile?

Posted in: Newspaper
Post count: 80

Mine looks great on the desktop but disappears on the phone.

Post count: 23312

Hello jauburn,

If you want to show the top bar menu for mobile mode, you have to use a bit of CSS code to show it. Please try the code below and place it in Theme panel->Custom CSS area. Please notice that the Tob Bar menu has been designed to be hidden to the mobile view. This was a design choice.

The code is ->

@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;
}
}

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

Thanks.

Post count: 80

Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.