Removing breadcrumbs from Blog page

Hi there,
I’m trying to remove the breadcrumbs on just my Blog page, and the CSS I am using for every other page on the site doesn’t work for the Blog for some reason. This is the page - https://dylanhbrown.com/mission-journal/

This is the CSS I am using:
.page-id-14 .x-breadcrumb-wrap {
display: none;
}

Can you help me figure out why this isn’t working?

Thank you!

Hello @powrider686,

Thanks for reaching out. :slight_smile:

Please add following CSS under X > Theme Options > CSS:

.blog .x-breadcrumb-wrap {
    display: none !important;
}

Thanks.

That did the trick, thank you!

Any idea why the page id method wasn’t working?

Hi @powrider686,

The blog doesn’t have the page-id in the body class. You should use the .blog instead:

Regards!

Ah, makes sense that it wasn’t working. Cheers!

Cheers! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.