Remove menu item for desktop only not for mobile

Hello everyone, I’d like to remove the “Help” menu item from the desktop version of my website, but keep it in the mobile menu. I’ve included my website URL below. Can anyone guide me on how to do this? Thanks in advance!

Here is my store URL: ife2td-qb.myshopify.com

Store password: 1234

1 Like

Hi @Digital_Imran

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (min-width: 749px){
a[aria-controls="NavigationTier2-3"] {
 display: none !important;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

Thank you so much @Made4uo-Ribe it works :grinning_face_with_smiling_eyes: