• Resolved kgibson84

    (@kgibson84)


    I am trying to get my submenus to appear to the left instead of the right of the drop down menus so the right most drop down doesn’t have it’s submenus cut off on smaller screen. I just can’t seem to figure out what to adjust to make this happen.

    https://dev.pacedmonton.com/

    Any help would be much appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Try making a child theme and putting the following code inside it, you might also be able to manage this by going to admin panel->appearence->edit, and adding it to the bottom of your style.css page, but making a child theme is the best option:

    .menu-main li ul {
    visibility: hidden;
    width: 200px;
    opacity: 0;
    margin: 0;
    position: absolute;
    background: rgb(255,255,255);
    background: rgba(255,255,255,0.8);
    top: 100%;
    left: auto;
    right: 0;
    z-index: 9999;
    box-shadow: 0 1px 3px 1px rgba(0,0,0,0.2);
    }
    Thread Starter kgibson84

    (@kgibson84)

    Hi There,

    Thanks for your help! I do have a child theme set up, so no worries there, and I have added the code you have indicated, but the submenu under About>What We Do is still falling off the edge. Not near as much though. Thoughts?

    Thanks again!

    Try adding the following code:

    .menu-main li ul ul {
    margin: 0;
    top: 0;
    left: inherit;
    right: 200px;
    width: 200px;
    }
    Thread Starter kgibson84

    (@kgibson84)

    That did it! That’s exactly what I need! Thank you so much!

    glad to help

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Moving submenus of navigation drop down from right side to left’ is closed to new replies.