Yes, it appears it’s a ‘default-menu class’ issue.
I used the following code to remove “Navigation” from the footer and it worked:
li.default-menu {
display: none !important;
}
Bottom line, the issue is theme specific and not your plugin. Thank you for responding. Cheers!
Interesting…When I first installed the plugin, it named my “home” link to ‘Navigation’ within the footer area. On my website: wwww.thenaughtybin(dot)com (warning: adult content) you’ll see it. However, I found adding this code to my CSS editor took care of the issue
[title~=”Navigation”] {
display: none;
}
Thoughts?
This worked for me:
[title~=”Navigation”] {
display: none;
}
Thoughts?
Hi Russell,
I think he might be asking how does one remove the “Navigation” link in the footer?