Top Bar Menu on Mobile Screen

Posted in: Newsmag
Post count: 6

Hi everyone!

How can I set to see all items in my top bar menu on mobile screen? Now I see social icons, but I dont see links for pages that are visible on desktop screen… http://brendmagazin.com/

I put this custom code but nothing is changed.


@media
(max-width: 767px) {
.td-header-top-menu-full,
.td-header-sp-top-menu {
display: block!important;
text-align: center;
}}

Thanks!

Post count: 23312

Hello,

Try to use the code below and place it in Theme panel -> Custom CSS area.

The code is here ->

@media (max-width: 767px){
.td-header-top-menu {
display: block;
}
}

The result is here -> https://www.screencast.com/t/y4oiAKg8GU1

Thanks for your understanding!

Post count: 6

Hello Catalin!

Thank you very much for help, it works on this site http://brendmagazin.com/, but it seems that not working on this site http://remixpress.com/

Can you please tell me what can be the problem, is it different class there?

Thanks!

Post count: 23312

Hello Ivana,

Yes, it seems to be another class and that’s why the above code does not work. Try to use the code below and place it in Theme panel -> Custom CSS area.

@media (max-width: 767px){
.td-top-menu-full {
display: block;
}
}

Thanks for your understanding!

Post count: 6

Thanks, Catalin! 🙂 That’s it.

Post count: 1

Not working for me, maybe the code needs to be check with the latest theme version!

Post count: 20688

Hi,


@Abner7g
I could take a look, post a link to the website and I will try to give you a solution.

Thanks

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