Tagged: breadcrumbs, Hide, Home
Hi Enfold,
I want to hide ‘home’ in the breadcrumbs at the other pages than home.
I followed the solution you gave at this topic: https://kriesi.at/support/topic/remove-home-from-breadcrumbs-2/
But this only hides the trailes between the pages.
Can you tell me how I can disable ‘home’ on my page?
This is the URL: http://www.c-testing.nl
Thanks in advance.
Greets Mark
Hey Mark_goessens!
Please try the following in Quick CSS under Enfold–>General Styling:
a.trail-begin {
display: none;
}
.page-id-3400 a.trail-begin {
display: block;
}
Cheers!
Rikard
Hi Rikard,
That works good for the home page.
How can I delete the trail at the beginning of the other pages, like: http://www.c-testing.nl/machines/hammer-mills/
The first trail has to be disabled.
Thanks in advance.
Greets Mark
Hey!
Home seems to be hidden on the page you posted. If you would like to remove separator as well, please add following code to Quick CSS
a.trail-begin + .sep {
display: none;
}
Best regards,
Yigit
Yesss! That’s it.
Thanks a lot Yigit!