Remove breadcrumb

Please how can I remove this breadcrumb from posts? Is there a CSS I can use? Traveling as a Way of Life: The Story of a Vagabond Blogger

<style>
.breadcrumbs {
    display: none;
}
</style>

Put that in your code injection and you should be good to go!

1 Like

Just wanted to add a small note, !important is needed to override style on mobile screens.

<style>
.breadcrumbs {
    display: none !important;
}
</style>
2 Likes

Thanks, the CSS worked, but unfortunately, it greyed out some elements which I don’t intend to be greyed out (affecting mobile view only). See photo’s attached.

Is there any solution please?


Try this:

<style>
.breadcrumbs {
    display: none !important;
}

@media (max-width: 479px) {
    .post > .post-tag {
        margin-top: 20px;
    }
}
</style>

I tried it; it didn’t work for the mobile view unfortunately. Can you help? @PriorityVision