Viewing 5 replies - 1 through 5 (of 5 total)
  • These are always difficult without access to the code because it’s hard to capture what’s happening on a hover. However, looking at the style sheet, I guess you need to look at this rule or one very like it:

    #ddnav li:hover ul,
    #ddnav li li:hover ul,
    #ddnav li li li:hover ul,
    #ddnav li li li li:hover ul,
    #ddnav li.sfhover ul,
    #ddnav li li.sfhover ul,
    #ddnav li li li.sfhover ul,
    #ddnav li li li li.sfhover ul {
      left: auto;
    }

    Until the link is in the hover state, the value for left is -999px, so this looks to me as though it’s what is bringing the sub-menu into view.

    There’s no value for top, however. So I think I’d try experimenting with some values for that.

    This answer’s a bit of guesswork, so my apologies in advance if it doesn’t help and I hope somebody else can be of more use.

    (Usual comments about the advisability of using a child theme, if you’re not already doing so)

    Cheers

    PAE

    Thread Starter gracianotorrao

    (@gracianotorrao)

    Thanks … but i’m not getting there.

    Here is a link to the template.
    Hope someone is patient enought.

    I’m not using the child theme yet, because i’m not sure how it handles translations like “Continue reading …”.

    And i also noticed that this theme displays in very diferente ways on IE and other browser ??

    On your style.css https://esdas.pt/portal/wp-content/themes/esdas/style.css
    Find the following code:

    #ddnav ul {
        border: 0 none;
        font-weight: normal;
        height: auto;
        left: -999em;
        line-height: 1;
        margin: 21px 0 0;
        position: absolute;
        width: 151px;
    }

    and replace it with:

    #ddnav ul {
        border: 0 none;
        font-weight: normal;
        height: auto;
        left: -999em;
        line-height: 1;
        margin: 0;
        position: absolute;
        width: 151px;
    }

    Thread Starter gracianotorrao

    (@gracianotorrao)

    Sorry … an update to the link: https://dl.dropbox.com/u/2715374/esdas.tar.gz

    Thread Starter gracianotorrao

    (@gracianotorrao)

    Thanks a lot Harrison O. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can't join the Menu with the sub menu’ is closed to new replies.