• Resolved Adam

    (@ahardy42)


    I can’t find any way to fix this or any messages from other people with the same problem, but on mobiles (and in the desktop designer), I can’t see the whole primary menu when I choose “More”. The first menu option is completely hidden underneath the menu’s “Close” button.

    This is quite a simple site, so I don’t have much going on in terms of plugins which could be causing this, and it seems really unlikely that it’s a bug.

    Any suggestions?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @ahardy42

    There is a display block CSS in max 481 media for .primary-menu-container which is coming from the index. I think you’ve added that CSS. So, you can remove that CSS and it will look properly centered menu as per screenshot. ( https://prnt.sc/Qve-swej-cBh )

    Thanks

    Thread Starter Adam

    (@ahardy42)

    Ah, my bad ??

    Thread Starter Adam

    (@ahardy42)

    Hi Sadik,
    I was wrong – it’s not me, I was obviously having a bad day. I thought I’d fixed it because I removed a whole section of CSS from my website, but it turns out I was looking at the wrong website. So the issue is still there and actually, I have very little custom CSS.

    This is either the style or some other plugin is messing it up.

    I tried adding this CSS but it had no effect:

    @media only screen and (max-width:481px) {
     .primary-menu-container {
      display: inline !important;
     }
    }

    In that case, you can just add the display:flex instead of display:inline

    Here is the code:

    @media only screen and (max-width:481px) {
     .primary-menu-container {
      display: flex !important;
     }
    }
    Thread Starter Adam

    (@ahardy42)

    Aha, “flex”. No idea what it means. But it works! Thanks ??

    I assume that it’s down to some evil plugin that I’ve installed, so I’ll have to keep an eye open whenever I add a new one or get an upgrade.

    yup, that sounds good
    and glad to hear that it works ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Mobile primary menu half hidden by its Close button’ is closed to new replies.