Tagged: menu, responsive, Secondary
Hi guys! How are you?
a question : i wolud like to choosde which element will be visible about secondary menu on mobile version, because there are too many links and they are moving down the layout of the main page.
Any suggestion?
Thanks a lot!
Cheers
Mario
Hey Mario!
We can give you some CSS to hide them. Let us know exactly which links your trying to hide.
Or if your just wanting to hide them all then use this CSS.
@media screen and (max-width: 767px) {
#avia2-menu { display: none !important; }
}
Best regards,
Elliott
Hi Elliot,
I would like to display on the mobile version only this link:
– my account (is possible only with an ICON?)
– i would like to hide social icons on mobile
Thanks for your help!
cheers
Mario
Hi!
Remove this from your custom CSS.
#avia2-menu {
display: none !important;
}
And add this instead.
#avia2-menu > li:nth-child(2) {
visibility: visible !important;
}
#avia2-menu > li {
visibility: hidden;
}
Regards,
Elliott