Tagged: menu, navigation
How can I deactivate a menu item link if I’m already on that page?
So if my menu has four options (Home, Work, About, Contact) and I click on “About” to go to the about page. I no longer want “About” to be clickable in the menu.
Hey Michae1!
Please try adding following code to Quick CSS
li.current_page_item > a {
pointer-events: none;
}
Best regards,
Yigit
Hi Yigit,
Thanx, but no luck with this yet. Any other ideas?