Hi!
How can I best rename/remove the text ’blog’ shown here and in every article page breadcrumb? https://www.mkse.com/tag/swedbank
Hi there,
Please add this code in the custom CSS:
.archive .x-breadcrumbs :nth-child(2),
.archive .x-breadcrumbs :nth-child(3) {
display: none;
}
Hope this helps.
Thanks. Works for the Archive. Is it a similar code for all Posts?
Hi there,
Please try:
.blog .x-breadcrumbs :nth-child(2),
.blog .x-breadcrumbs :nth-child(3),
.archive .x-breadcrumbs :nth-child(2),
.archive .x-breadcrumbs :nth-child(3),
.single-post .x-breadcrumbs :nth-child(2),
.single-post .x-breadcrumbs :nth-child(3) {
display: none;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.