Hi,
I’ve added a sub-menu to my site. I should expect that this one fade’s in and out as in the demo’s. On my website (see private section for a link) it overlaps each other for a moment. What goes wrong? Any idea?
Regards,
Erwin
Hey erwin_m!
Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
Cheers!
Elliott
Hey Elliot,
Thanks for your reply!
I’ve deactivated all of the plugins. And renamed the old enfold-folder and uploaded a fresh one. As I’m using a child-theme, I’ve activated the original theme. Then the overlapping doesn’t occur anymore. The menu response is much faster. So I’ve tested some things out. I do know now what the problem is, it’s a rule within style.cs.
ul.sub-menu{
opacity:0.8 !important;
}
This is causing it. So I’ve changed it to:
ul.sub-menu {
background:rgba(255,255,255,0.5)!important;
}
Now it’s working. Thank you for thinking with me!
Regards,
Erwin