Reply To: Menu on mobile

Home Forums Support Menu on mobile Reply To: Menu on mobile

Home Forums Support Menu on mobile Reply To: Menu on mobile

#94954
Tom
Lead Developer
Lead Developer

Hmm, not super easily..

You could add all of your secondary menu items to the primary menu, and each give them a class of “mobile-only”.

Then add this CSS:

.mobile-only {
      display: none;
}

@media (max-width:768px) {
      .secondary-navigation {
            display: none;
      }
      .mobile-only {
            display: block;
      }
}