• Hi,

    How can I disable the Hamburger menu for PC, Laptop and only displayed in Tablet and Smartphone view? According to that, how can I disable the normal Menu (Navigation) in Tablet and Smartphone view?

    Regards

Viewing 1 replies (of 1 total)
  • Hello there! 

    Sorry for such a delayed response. 

    But we have to disappoint you because currently, no theme functionality allows you to disable your main dropdown menu and use it on tablets and smartphones only, unfortunately. But if you wish, you may use CSS to hide it from your website depending on a certain screen resolution (width). Here’s an example: 

    @media (min-width: 769px){
    .header-dropdown{
    display: none;
    }}
    @media (max-width:768px){
    .header-menu-container{
    display: none;
    }}
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.