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!
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!
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!
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!