• Resolved monikak

    (@monikak)


    We have created wordpress website similar to client main website (zimmark.com) as “http://www.fluidperformancemanagement.com/index.php”
    and are working on template changes on it

    My question is why submenus not looking for IE 8,9 and they are looking well on Mozilla, Chrome
    i checked at admin panel correctly pages are created with parent menu and also assigned under Menu tab

    Can you guide me on this, is that any CSS or still any page issues?

Viewing 15 replies - 1 through 15 (of 23 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Get rid of

    #access ul ul li {
     display: none;
    }

    This is unnecessary as you’re already hiding the <ul>, you don’t need to hide the <li> of that <ul>.

    Thread Starter monikak

    (@monikak)

    thank you for your reply.
    but if we hide or comment out below class from style.css
    /*
    #access ul ul li {
    display: none;
    } */

    then submenus remained aways open.
    this is not correct , as when we are going to mouse over to parent menu then only submenu should be seen

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Apply the display none to the ul, not the li;

    #access ul ul  {
     display: none;
    }

    Thread Starter monikak

    (@monikak)

    after removing li from below code

    #access ul ul li {
    display: none;
    }
    amd after making it as below code – submenues looking always open on page load..

    #access ul ul {
    display: none;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Clear your browser cache.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Actually, you need more specific selectors
    try this;

    #access .menu-header ul {
     display: none;
    }

    Thread Starter monikak

    (@monikak)

    sir,even after clearing cache and applying below code under style.css , i found that complete menu gets hidden
    ie no parent menu or submenues appearing ?

    #access .menu-header ul {
    display: none;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You’ve got it commented out (within /* */).

    Thread Starter monikak

    (@monikak)

    as its giving problem i commented out, am opening it again
    i will remove after you test it

    Please have look now

    Thank you

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try this instead;

    .menu-header ul ul{
     display: none;
    }

    Thread Starter monikak

    (@monikak)

    by adding below code same problem persists. ie submenus showing in mozila and chrome and not in IE πŸ™

    .menu-header ul ul{
    display: none;
    }

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you reapply my first suggested method, for we can progress onto another technique.

    Thread Starter monikak

    (@monikak)

    yes here i applied again (just removed li from below code) and seeing submenu always open

    #access ul ul {
    display:none;
    }

    let me know what can be done next

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you retry the suggested method

    .menu-header ul ul{
     display: none;
    }

    I can’t debug the issue if it’s not applied to the website.

    Thread Starter monikak

    (@monikak)

    ya added below code too

    .menu-header ul ul{
    display: none;
    }

    please check now

Viewing 15 replies - 1 through 15 (of 23 total)
  • The topic ‘wordpress submenu not looking at IE 9’ is closed to new replies.