My apologies if I missed this while searching through the forum, but is there a way to hide the secondary menu at the very top of the screen on mobile (website attached in Private Content section)? Ideally, I’d like to add those elements to the main menu on mobile, so they show up when someone taps the menu button.
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
nav.sub_menu {
display: none;
}
}
Cheers!
Josue
Thanks, Josue! Is there a way to remove the social icons from the top on mobile, too?
Hi!
Use this code instead:
@media only screen and (max-width: 767px) {
#header_meta {
display: none;
}
}
Regards,
Josue
Thanks! That did the trick.