Hi
How do I remove the current page link in the current tag?
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
I did a search online and found some css that I could use in the current tag.
pointer-events: none;
I find it weird that the current tag does not remove the current page link.... but it was good to know that a simple solution has been found. I do not know how it acts in IE though. Someone suggested using:
pointer-events: none; cursor: default; color: lightgray;
So for the moment I got the two options above.