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!
Just wanted to add a small note, !important is needed to override style on mobile screens.
<style>
.breadcrumbs {
display: none !important;
}
</style>
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


