CSS to hide submenu on mobile menu

Can you please provide css to disable the submenu on mobile... and the submenu indicator too.

Thanks so much

Comments

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.

    It is always a good idea to also attach a screenshot showing your issue.

    Thanks

  • edited June 2022

    stedmundsadvertising.com


    The submenu is under services. If it is not possible to hide the submenu with CSS could you perhaps tell me how to hide the drop down indicators (+ Icon) on the mobile menu with CSS?


    Thanks so much


  • Please use this CSS code to hide submenu and the icon to open the menu:

    @media (max-width:768px){
     .menu-toggle{display: none !important;}
     .sub-menu{display: none !important;}
    }
    

    thanks

Sign In or Register to comment.