Site logo

Archived topic

Yoast SEO Breadcrumbs font size

3 replies · Started by Incal on July 4, 2022

Viewing posts 1–4 of 4

Hi,

I tried using this code to modify my Yoast SEO breadcrumbs but it doesn't seem to work for me.

#breadcrumbs {
font-size: 14px;
padding-bottom: 15px;
}

Could you please advise?

Thank you,
Kevin

Hi Kevin,

The breadcrumbs doesn't seem to have a specific CSS class to target, try this to change the font size:

.single-post .entry-header span {
    font-size: 14px;
}

As span is an inline element by default, padding or margin can not be applied to a span element.

You'll need to add the padding to the H1 title:

.single-post .entry-header h1.entry-title{
    padding-top: 15px;
}

Let me know if this helps :)

Hi Ying,

Thank you - that worked!

Best,
Kevin

No problem :)

This archived topic is closed to new replies.