Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • Upendra Friend
    #199055

    I want to enable only Off Canvas menu for Ipad, currently I have 4 column submenu and that shows the drop down menu weird. I only want to show Off Canvas menu for Ipad and other similar size tablets and want to hide native dropdown menu. I have no issues with other smaller devices, even when the Ipad is in portrait mode, it only show off canvas, when I go to landscape mode it shows the menu and looks ugly.
    Thank you in advance!

    Adam M Moderator
    #539813

    Please open the file root_folder/templates/ja_decor/css/custom.css (create a new one if you don’t have this file) and add this rule:

    @media (min-width: 768px) and (max-width: 992px) {
    .navbar-collapse.collapse {
    display: none !important;
    }
    }

    Save your file and check again.

    Upendra Friend
    #539848

    Worked, great!

    zalchris Friend
    #541511

    The megamenu disappears, but off-canvas will only be shown on a smaller resolution.
    How can I ensure that off-canvas is displayed in a smaller width than 1200px?
    Thanks for your help!

    Adam M Moderator
    #541674

    Hi zalchris,

    Could you please provide your site url so I can have a look ?

    zalchris Friend
    #541844

    Hi Adam,
    my site url: http://www.cellfloc.com
    Thank you!

    Adam M Moderator
    #541970

    Hi,

    Please navigate to Admin >>> Extensions >>> Template Manager >>> choose your current template >>> switch to tab Layout >>> next, switch to tab Responsive Layout >>> There are 4 views : Large, Medium, Small and Extra Small >>> make sure you only disable the Off-Canvas in Large screen.

    zalchris Friend
    #542247

    Hi Adam!
    I have made ​​the settings, but the off-Canvas menu still does not appear.
    I want to show off the canvas menu starting with a resolution smaller than 1200 px.
    How does this work?
    Thank you!

    Adam M Moderator
    #542346

    Hi,

    In this case, please open custom.css file and update previous CSS rule as below :

    @media (min-width: 768px) and (max-width: 1200px) {
    .navbar-collapse.collapse {
    display: none !important;
    }
    .container {
    position: relative;
    }
    .navbar-header {
    display: block;
    }
    }

    Save your file and recheck.

    zalchris Friend
    #542574

    Hi Adam,

    it doesn’t work :((
    Neither the mega menu nor the off-Canvas menu is displayed between 992px and 1200px.
    How can i solve that problem?

    Thanks

    Adam M Moderator
    #542797

    Just update a few lines as below and it should work :

    @media (min-width: 768px) and (max-width: 1200px) {
    .navbar-collapse.collapse {
    display: none !important;
    }
    .container {
    position: relative;
    }
    .navbar-header {
    display: block !important;
    }
    .logo-image a img {
    max-height: 34px;
    }
    }

Viewing 11 posts - 1 through 11 (of 11 total)

This topic contains 11 replies, has 3 voices, and was last updated by  Adam M 9 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum