Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #338840
    Jeffrey Spelman
    Participant

    Hello,

    In the Responsive Pro theme is it possible to default the menu to “burger” style in desktop mode so it looks similar to tablet and mobile modes?  This is to replace the classic horizontal menu.

    Thanks!

    #338846
    sujapati
    Keymaster

    Hello Jeffrey:  Thanks for the query. You can replace the horizontal menu by a hamburger menu on the desktop device by adding the CSS below:

    
    .nav-primary {
        display: none;
    }
    
    @media screen and (min-width: 991px) {
        .mobile-menu-anchor {
            display: inline-block;
        }
    }
    @media screen and (min-width: 1200px) {
        .mobile-menu-anchor {
            position: absolute;
            left: 20px;
        }
    }
    
    

    Please go to “Customize => Additional CSS ”, upload the code and save the changes.

    Kind Regards,
    Sujapati

    • This reply was modified 2 weeks, 4 days ago by sujapati.
    • This reply was modified 2 weeks, 4 days ago by sujapati.
    • This reply was modified 2 weeks, 4 days ago by sujapati.
    • This reply was modified 2 weeks, 4 days ago by sujapati.
    • This reply was modified 2 weeks, 4 days ago by sujapati.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.