Hello,
Thanks for this great plug-in! saves me a lot of work!
I am trying to include sIFR 3 in this navigation, but I have a problem.
When I declare sIFR to be used for
[code:akkzk9ko]ul#dropmenu li.page-item-5 a[/code:akkzk9ko]
(page-item-5 is a nav item with a dropdown)
All the links in the dropdown get hidden by sFIR!
[b:akkzk9ko]I FOUND A FIX![/b:akkzk9ko]
The problem was that sIFR adds a
[code:akkzk9ko].sIFR-active ul#dropmenu li.page-item-5 a { visibility:hidden; }[/code:akkzk9ko]
And this will make all a links below the first li.page-item-5 a hidden!
To fix this just add:
[code:akkzk9ko].sIFR-active ul#dropmenu li ul li a { visibility:visible; }[/code:akkzk9ko]
To the bottom of your CSS file, this makes all li items below another li item visible again.
So now you can use sIFR for the main nav items and still use the Multi-level Navigation Plugin!