Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author newbiesup

    (@newbiesup)

    Hi,

    I’ve checked your site. Actually the sticky menu will appear when scrolling up but your original menu is just in front of it so you can not see it. You can add one line of CSS to your styling file to check it(remember to remove it after tesing).

    #main-header-wrapper {
       display: none;
    }

    The problem of this is because your header has a higher number for the z-index property. it’s 2000 while the sticky menu z-index is 998.

    https://www.w3schools.com/cssref/pr_pos_z-index.asp

    So the solution is to make the z-index of the sticky menu higher than your header.
    Add this to your styling file and it should work well.
    .wp-sticky-menu {z-index:2001;}

    Thread Starter imvidal

    (@imvidal)

    Hey!
    Now I see… thanks for the answer, I’ll try to do that…
    Thanks again.

    Regards, André.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘My menu does not appear!’ is closed to new replies.