Hi,
Is there a way to disable some headings in my menu so they are no clickable?
-
I would like the “Shop” Button on the top to be a dropdown menu only and not something that can be clicked on.
-
The Subheadings Clothing, Shoes and Featured, I would also like to not be clickable.
https://theothelabel.com/
@JoeyRoo - please check navigation settings, edit the link to put # instead of any other text or link into it and it should work as per your need
Hi @JoeyRoo
Adding # to the links will still change the URL and the links will remain clickable. You can make the subheadings and the shop button not clickable by adding the following CSS to your theme code.
.mega-menu-columns__heading {
pointer-events: none;
}
li.menu-item-has-children.menu-item-has-megamenu > a:first-child {
pointer-events: none;
}
Do let me know if you need help adding the code to your theme.
Thanks.
Perfect! Appreciate the help 