• Resolved aymay

    (@aymay)


    I am working on building this site and I cannot figure out how to make the sub-navigation for the “Managed Security” nav item display over the body blocks. For some reason it works as it should on the home page, but every other page displays the sub menu underneath the following body blocks. Any help would be appreciated.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Felipe Santos

    (@foosantos)

    Hi there,

    That’s because you’re using a cover block and it has overflow by default, as the cover block wasn’t created with that in mind.

    Also, I see it is not set as a navigation, so keep in mind that it might have impact on your SEO/accessibility. I’m not an SEO/accessibility expert, but I believe it ideally needs to use a nav element.

    A quick fix would be something like that:

    .wp-block-cover {
        overflow: visible;
    }

    Important: My recommendation is to at least add a custom class for this block so it doesn’t apply to other cover blocks on your site.

    https://d.pr/i/od9pxq
    Full Size: https://d.pr/i/od9pxq

    If you add something like header, you can change to that:

    .header .wp-block-cover {
        overflow: visible;
    }
    Thread Starter aymay

    (@aymay)

    Thank you for your insight, this worked

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Submenu gets cut off by Content blocks’ is closed to new replies.