How to remove tag a in breadcrumbs | Community
Skip to main content

How to remove tag a in breadcrumbs

  • July 14, 2022
  • 3 replies
  • 0 views

Anis

Hello sir,

How to remove tag "a href" in breadcrumbs?

I want to show my breadcrumbs, and make them not clickable

Thank you

3 replies

Ifra
  • July 14, 2022

Hi Anis F,

If you only want to disable clicking of your breadcrumbs then add this CSS code to your style.css file:

.breadcrumbs li a {pointer-events: none;}

 

Above solution is easiest way to disable anchor tag otherwise tag can be changed via JS code.

 

Thanks

Team

 


Anis
  • Author
  • July 14, 2022

Hi @ifra,

That's working great!

Thank you for helping


Ifra
  • July 14, 2022

Awesome :)