Reputation: 3
I'm creating a wordpress website and everything is nice and wonderful but I've run into a problem it seems... My sub-menu is not properly showing up. It doesn't work on mobile either. I'm quite lost. It was working and then just stopped.
http://vps17582.inmotionhosting.com/~eterna39/wp/
Thank you in advance. I hope I get this solved fast so I can launch my site sooner than later.
Thanks!
Upvotes: 0
Views: 792
Reputation: 1
Yes, this solves it!
.navbar { overflow: visible!important; }
Be sure to add the class to the nav container (Elementor Advanced tab)
Upvotes: 0
Reputation: 3
Thank you guys. Adding the overflow: visible!important } was the way to go. I can't believe I didn't think of that. I thought it was possibly a z-index issue.
Thanks guys!
Upvotes: 0
Reputation: 406
You submenu is there but the overflow hidden is blocking it. remove overflow hidden from the class navbar
.navbar {
/* overflow: hidden; */
}
Upvotes: 0