Site logo

Archived topic

Issue Displaying Breadcrumbs Using An Element

3 replies · Started by Jodie on October 16, 2022

Viewing posts 1–4 of 4

Hi folks,

I've got breadcrumbs displaying at the top of my posts using a GeneratePress Element.

However, there's often a large gap between the element and the H1 of the post, which I'd rather avoid.

Could you tell me what I could do to fix that? Thanks!

Cheers Jodie

Hi Jodie,

You have this code in Additional CSS:

li.breadcrumb-item.active
{
	visibility: hidden;
}

It causes the space. Perhaps you can try this instead?

li.breadcrumb-item.active
{
	display: none;
}

Hi Fernando,

Great! That worked, thank you so much.

Cheers Jodie

You're welcome Jodie!

This archived topic is closed to new replies.