Mega Menu / BB template bug

Hi there,

This mega menu (using the Max Mega Menu plugin) is displaying a Beaver Builder template (2 latest posts) but the posts are still showing when the menu collapses.

CloudApp

I’m using the BB theme, and I’ve tried the twenty nineteen theme which works correctly. I’ve also tried other browsers.

url: https://dataagility02.bluedogwebdesign.com/

Thanks!
Clark

Hi Clark,

Not 100% sure, but it looks like visibility: visible; is having some form of impact. You can try the CSS below and see if this resolves the issue.

.mega-sub-menu .fl-post-feed-post {
    visibility: inherit !important;
}

Thanks Danny… Ben from support provided this snippet which fixed the problem.

.mega-menu .fl-post-feed-post {
  visibility: unset !important;
}