Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #592469

    Hey guys!

    I was just wondering if it was possible to hide specific main navgation links on desktop but have them show in the mobile menu when on a mobile device…In other words, is there a way to add the only-mobile class to specific links in the main navigation?

    Thank you so much! :)

    #593143

    Hi peanuttario,

    Find the id of the menu item by inspecting it in your browser, then wrap your code in this media query:

    @media only screen and (min-width: 768px) {
    id of your menu item {
    display:none !important;
    }
    }

    If you can’t do this yourself then link to your site and explain what menu item your would like to hide on desktop.

    Regards,
    Rikard

    #593491

    Hey Rikard!

    Thanks for providing this, worked perfectly. I had tried something similar but was just a little off!

    Happy Friday! :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘only-mobile class for main navigation links’ is closed to new replies.