• Hi,

    I just encountered a new problem where the top menu is only showing for a second before it disappears.

    My site http://www.nakkeprolaps.no (sorry, it’s in Norwegian) is suffering from ‘disappearing top menu syndrome’ and I would really like some help on why this is occurring.

    I’ve been reading around on the forum, but to no avail. So, I am calling on the experts in here to help me out. Would really appreciate it.

    I recently updated to 4.4, but the top menu has worked fine for weeks until today – when I suddenly noticed that it – when entering the site ‘ flashes briefly, before it disappears.

    Can any of you clever people help me out?

    Thanks in advance.

    Adam

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Adam_Murphy

    (@adam_murphy)

    Found this:
    https://en.forums.wordpress.com/topic/top-menu-disappeared-in-academica-theme

    Which doesn’t really help me, but I am running that theme. Academica. His site seem to be fixed though.

    Thread Starter Adam_Murphy

    (@adam_murphy)

    I have been doing some research and found out that WordPress fixed this problem for their users (on wordpress hosted sites) – but not for self-hosted sites (like mine).

    Could anyone help me out with my disappearing top menu? Would be much, much appreciated.

    Hi Adam_Murphy!

    Looking at the source code, we can see ‘display:none;’ is being applied to all
    uls that exist inside the div#menuhead.

    From a quick look at file: themes/academica/js/menu.js, you’ll see the line:

    $( "#menuhead ul" ).css( { display : "none" } ); // Opera Fix

    What we want to do is only apply this ‘fix’ to the children ul of ‘#menuhead ul’. So change the above line to:

    $( "#menuhead ul ul" ).css( { display : "none" } ); // Opera Fix

    Thread Starter Adam_Murphy

    (@adam_murphy)

    Hi TTTytan,

    Thank you so much for your answer – its really great that people can be so helpful. I wish there was a ‘donate a cup of coffee’ button in this forum. 😉

    I can’t wait to get back from work and try the fix you suggested. Will let you know how it turned out. 🙂 Thanks again.

    Have a great day.

    Thread Starter Adam_Murphy

    (@adam_murphy)

    TTTytan: You are a legend. That worked a treat. Thank you!

    Please make this post as resolved

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Disappearing top menu’ is closed to new replies.