• Resolved larsmu

    (@larsmu)


    Hello,

    I’ve got a website with the pages as sorted below:
    Media
    -Activities
    -Jumelage
    –Page1
    –Page2

    The first submenu shows up perfectly, but the other one, that is beneath ‘jumelage’ does not show up on my mac.
    I’m using Waterfox as browser but as well in Safari I have the same issue.

    I’m running El Capitan with the latest updates.
    Wordpress 4.4.2 with all updates plugins en themes.

Viewing 6 replies - 1 through 6 (of 6 total)
  • I installed the theme and noticed the same problem, but what was happening was the third level was opening to the right side, and because its top level menu item was on the far right of the menu bar, it was actually opening up the third level menu “off screen” to the right. I could see the third level menu if I moved its top level menu item over to the left.

    If you really need that top level menu at the far right, you could probably add some CSS to make the third level menu open to the left instead. Or you can add some CSS to make the menu bar centered instead of floated to the right.

    Thread Starter larsmu

    (@larsmu)

    Thank you for the explination.

    I’ve search in the CSS file for the specific part but couldn’t find it.
    I’m not that into coding and certainly not css.

    Is there any way that you help me with that coding part?

    Thanks in advance!

    Can you please provide a link to your site? And would you rather have the entire menu centered or for the far right menu items to open up to the left?

    Thread Starter larsmu

    (@larsmu)

    The link to the website is https://jeugdverbroederingzelzate.be

    I want to have the allignment on the right but the submenus popup to the left.

    Thank you!

    You want to first add a CSS plugin like Custom CSS Manager. Then you want to add the following CSS rules:

    .main-navigation ul ul ul {
        left: -100%;
        max-width: 200px;
    }
    
    .menu ul ul li > a:after {
       content: none;
    }
    
    .menu ul ul li.page_item_has_children > a:before {
       content: '\\ab  ';
    }

    This should open up the submenus to the left. Do not make changes to the theme’s style.css file, or else your changes will be lost the next time you update/upgrade the theme.

    Thread Starter larsmu

    (@larsmu)

    Thank you very much!
    This worked for me.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Subpages not showing’ is closed to new replies.