Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1093766

    Hi all,

    We’re having an issue with the display of some third level menu items. Is there an easy modification to change the direction of the third level items from left to right?

    Preview our site here :http://dev.premierepc.net/
    For example try navigating to Managed IT Support For Business > OnDemand Services >

    As you’ll see. They are opening on the left and obscuring the rest of the menu. Can we switch the direction to open on the right side?

    It looks like these third level items have the same minimum width as the rest of the menu, so if we can reduce their width also that would be helpful.

    Thanks in advance for your assistance.

    #1094368

    Hey premierepc,

    Please try the following css:

    
     @media only screen and (min-width:1024px){
        #top .av-main-nav ul ul {
            left: -250px;
        }
     }
    

    Best regards,
    Victoria

    #1094761

    Thanks Victoria, now the third level menu is no longer overlapping the second. I tried playing around with the code to get the menu to open to the right side, but could not. Is this something you can help with also? Your assistance has been greatly appreciated

    #1095589

    Hi,

    Sorry for the late reply. Do you mean that you want to move the sub menus to the right of the parent menu item? If not then please try to explain a bit further or post a screenshot highlighting the problem.

    Best regards,
    Rikard

    #1095910

    Yes Rikard, that is correct.

    #1096318

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    .av-main-nav ul.sub-menu {
        left: auto;
        right: 0;
    }

    Best regards,
    Rikard

    #1096559

    That didn’t do it either, but I was able to modify the code that Victoria provided to get it working as needed. Here is what we ended up going with.

     @media only screen and (min-width:1024px){
        #top .av-main-nav ul ul {
            left: auto;
            right: -250px;
        }
     }
    • This reply was modified 4 years, 11 months ago by premierepc. Reason: code edit
    #1096598

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Third Level Menu Opening Direction’ is closed to new replies.