Viewing 1 reply thread
You must be logged in to reply to this topic.
Good day,
It is possible to modify the “breadcrumbs”, what I mean, is that I have names of somewhat long pages, and then these titles are superimposed on the part that says: “you are here”. Is it possible to remove that “word” or that the full name of the page does not appear in the breadcrumbs?
Hello,
You can remove the “You are here” text by adding this css in your Custom Css box:
.page_parents li:first-child {
display: none;
}
I don’t understand well what you want to do with the page’s titles in breadcrumb, but if you want to remove them too, then add this css also:
.page_parents li:last-child {
display: none;
}
Best regards!
You must be logged in to reply to this topic.