How to disable submenus on mobile devices?

Hello, I do not want my submenus to appear in the container with all my nav items on mobile devices. I would much rather have them disabled for mobile devices because users can just click the parent page instead and just go to the sub pages from that parent page (on mobile that is)


Here is my public share link: LINK
(how to access public share link)

Hello @gschultz

You have 2 ways to do this:

  1. through making elements class display: none on particular screen size:

    Will effect all elements with this class name. Also will effect smaller screen size.

  2. through making exact element display: none on particular screen size:

    Will not effect other elements with the same class name. Should be applyed separately for every screen size.

Regards,
Anna

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.