Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #110642

    vasco m
    Participant

    Hi!
    I have vertical mega menu, but the items is not visible in some resolutions, and its not possible to scroll http://adep.pt/curso/

    any solution?

    #110717

    Mrinal
    Member

    Hi Vasco,

    To show a scroll bar, add the following CSS codes via Appearance > Customize > Custom > CSS:

    
    .x-navbar-fixed-left {
        overflow: auto !important;
    }
    
    #112716

    vasco m
    Participant

    thanks a lot! works perfect!

    #112719

    Mrinal
    Member

    You’re welcome Vasco.

    Have a nice day, Cheers!

    #139667

    lyrical
    Participant

    DISREGARD – NEEDED TO CLEAR BROWSER CACHE

    Hi – I’m going to piggyback on this question/solution. I have something similar, but it is in regard to minimizing the window size. The scroll solution works great on smaller screens, but I can’t seem to get it to show when we reduce the window size on a larger screen. Any options?

    Love, love, love this theme!
    Lisa

    #139808

    Cousett
    Member

    Glad you Love, love, love this theme! 😀

    #312964

    mverlaque
    Participant

    Hi,

    I tried the same custom CSS code that you recommended in the first reply, and it definitely worked as far as scrolling goes, but it also caused my drop down menus to stop functioning. The menu items that are NOT drop down categories work fine, but the drop downs will not expand when that CSS code is placed in there. Any solution to have both scrolling AND drop down menus?

    Best,

    Matt

    #313180

    Lely
    Moderator

    Hello Matt,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    #313254

    mverlaque
    Participant
    This reply has been marked as private.
    #313461

    Rad
    Moderator

    Hi there,

    Fixed positioned navigation iis default to overflow: visible;. Anything that overflows outside the navbar’s dimension will then be visible.

    Now, if you set it to auto, then it will hide all elements outside the navigation’s dimension.

    Your navbar has 233px width, and your submenu appears outside of it. Thus removing the overflow:visible will hide those menu. To make it more clear, it’s like putting your picture in a picture frame, but your shoulder is hidden because it’s covered by the frame.

    Thanks!

    #314172

    mverlaque
    Participant

    Is there a way to change the code so the menu simply scrolls with the page content?

    #314189

    mverlaque
    Participant

    Or change the menu dropdowns so that they drop down within the confines of the navbar?

    #314362

    Christopher
    Moderator

    Hi there,

    Provided credentials are not working, please check.

    Thanks.

    #314799

    mverlaque
    Participant

    Sorry, the Coming Soon page is gone and you should be able to see the site.

    Alternatively, is there a way to make the menu that appears on mobile screens default for the desktop view as well? That might be a decent solution because then I can still scroll and it’ll be contained within the nav bar container.

    #314970

    Rad
    Moderator

    Hi there,

    That’s possible, but remember, mobile and tablets does not have hover functionality. It will not work, once your press the parent menu to display sub-menu, it will just load the page.

    I think, moving sub-menu within navbar dimension is okay too.

    .x-navbar-fixed-left {
        overflow: auto !important;
    }
    .masthead-inline .x-navbar.x-navbar-fixed-right .desktop .sub-menu {
      top: 2.5em !important;
      left: auto;
      right: 8px !important;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }
    

    Cheers!